drawing a line
@currankelleher's famous introToD3 examples
artisanally ported to blockbuilder.org by @micahstubbs
xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>SVG Example</title>
</head>
<body>
<svg width="250" height="250">
<line x1="50" y1="50" x2="200" y2="150"
stroke="black" stroke-width="20"></line>
</svg>
</body>
</html>