23 lines
478 B
HTML
23 lines
478 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>URL Path Test</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<text x="10" y="50" font-size="20">42</text>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
var number = 42;
|
||
|
|
var svg = document.getElementById("my-svg");
|
||
|
|
|
||
|
|
var path = document.createElementNS("http://www.w3.org/2000/svg", "path");
|
||
|
|
path.setAttribute("d", "M10," + number + " L50,10 50,50 10,50 Z");
|
||
|
|
path.setAttribute("fill", "#007bff");
|
||
|
|
|
||
|
|
svg.appendChild(path);
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|