Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created October 13, 2020 14:10
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/e6ef58493a191481c8f4c98f215bc7ac to your computer and use it in GitHub Desktop.
Save Alkimisti/e6ef58493a191481c8f4c98f215bc7ac to your computer and use it in GitHub Desktop.
ellipse
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ellipse</title>
<style>
#elipsa {
fill: orange;
stroke: red;
stroke-width: 3;
}
</style>
</head>
<body>
<svg height="500" width="400">
<ellipse id="elipsa" cx="250" cy="150" rx="100" ry="50">
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment