Skip to content

Instantly share code, notes, and snippets.

@danaoira
Last active June 7, 2017 07:33
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 danaoira/a98a0845285a01b694fa75badbd4826d to your computer and use it in GitHub Desktop.
Save danaoira/a98a0845285a01b694fa75badbd4826d to your computer and use it in GitHub Desktop.
hello-smiley
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body {
margin: 0;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
circle, path {
fill: pink;
stroke: gray;
}
</style>
</head>
<body>
<svg width=960 height=500>
<circle cx=205 cy=200 r=45 />
<circle cx=395 cy=200 r=45 />
<path d="M150,300 Q300,450 450,300 L150,300 Z" />
</svg>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment