Temp

<!DOCTYPE html>

<html>

<head>

<title>HTML5 SVG demo</title>

<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />

</head>

<body>

<h1>HTML5 SVG Demo (embed with object)</h1>

<p> A nice green circle that was embeded using the HTML "object" tag:

<object type="image/svg+xml" data="circle.svg"></object>

</p>

<p> A nice Diagram that was embeded using the HTML "object" tag:

<object type="image/svg+xml" data="Image.svg"></object>

</p>

</body>

</html>

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">

<path d="M 100 100 L 250 100 " stroke="blue" stroke-width="5" fill="none" />

<path d="M 100 200 C 100,100 400,100 400,200" stroke="green" stroke-width="5" fill="none" />

<path d="M 100 50 L 250 50 " stroke="blue" stroke-width="5" fill="none" />

<path d="M 250 100 C 300,100 300,50 250,50" stroke="green" stroke-width="5" fill="none" />

<!--

<path id="lineAB" d="M 100 350 l 150 -300" stroke="red"

stroke-width="3" fill="none" />

<path id="lineBC" d="M 250 50 l 150 300" stroke="red"

stroke-width="3" fill="none" />

<path d="M 175 200 l 150 0" stroke="green" stroke-width="3"

fill="none" />

<path d="M 100 350 q 150 -300 300 0" stroke="blue"

stroke-width="5" fill="none" />

Mark relevant points

<g stroke="black" stroke-width="3" fill="black">

<circle id="pointA" cx="100" cy="350" r="3" />

<circle id="pointB" cx="250" cy="50" r="3" />

<circle id="pointC" cx="400" cy="350" r="3" />

</g>

Label the points

<g font-size="30" font="sans-serif" fill="black" stroke="none"

text-anchor="middle">

<text x="100" y="350" dx="-30">A</text>

<text x="250" y="50" dy="-10">B</text>

<text x="400" y="350" dx="30">C</text>

</g>

-->

</svg>