Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created October 13, 2020 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alkimisti/77e5d1eb60136eb62bd266e69e1680c8 to your computer and use it in GitHub Desktop.
Save Alkimisti/77e5d1eb60136eb62bd266e69e1680c8 to your computer and use it in GitHub Desktop.
polygon
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>polygon</title>
<style>
#poligoni {
fill: yellow;
stroke: #C83436;
stroke-width: 5;
}
</style>
</head>
<body>
<svg height="210" width="200">
<polygon id="poligoni" points="0,0 50,150 200,100 100,100"/>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment