You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
594 B
23 lines
594 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<svg height="800" width="500">
|
|
<circle/>
|
|
<circle r="50"/>
|
|
<circle r="50" cx="200" cy="300"/>
|
|
</svg>
|
|
<svg height="800" width="500">
|
|
<line/>
|
|
<line x1="0" y1="0" x2="100" y2="100"/> <!-- no stroke, so invisible -->
|
|
<line x1="0" y1="0" x2="100" y2="100" stroke="purple"/>
|
|
<line x1="10" y1="0" x2="10" y2="100" stroke="red"/>
|
|
<line x1="30" y1="10" x2="130" y2="10" stroke="blue"/>
|
|
</svg>
|
|
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|