Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created October 13, 2020 14:52
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/a66d1e0459ebb3a498f96855b0444c65 to your computer and use it in GitHub Desktop.
Save Alkimisti/a66d1e0459ebb3a498f96855b0444c65 to your computer and use it in GitHub Desktop.
polyline
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>polyline</title>
<style>
#poli {
fill: none;
stroke: black;
stroke-width: 3;
}
</style>
</head>
<body>
<svg height="200" width="500">
<polyline id="poli" points="120,20 60,40 80,120 200,180"/>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment