Skip to content

Instantly share code, notes, and snippets.

@suissa
Created October 10, 2015 13:45
Show Gist options
  • Save suissa/60db80f6f7054fdd7451 to your computer and use it in GitHub Desktop.
Save suissa/60db80f6f7054fdd7451 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>SVG</title>
</head>
<body>
<svg width="400" height="400">
<!-- Um retângulo: -->
<rect x="10" y="10" width="150" height="50" stroke="#000000" stroke-width="5"ll="#FF0000" />
<!-- Um polígono: -->
<polygon fill="red" stroke="blue" stroke-width="10"
points="250,75 279,161 369,161 297,215
323,301 250,250 177,301 203,215
131,161 221,161" />
<!-- Um círculo -->
<circle cx="70" cy="240" r="60" stroke="#00FF00" stroke-width="5"
ll="#FFFFFF" />
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment