-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·27 lines (25 loc) · 824 Bytes
/
index.html
File metadata and controls
executable file
·27 lines (25 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Math Project</title>
<style media="screen">
.bd{
border: 3px solid black;
}
</style>
</head>
<body>
<p>Click inside black box to add nodes and click on start weight filling to add weights to edges.</p>
<svg class="bd" height="500" width="500">
<!-- <circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" /> -->
</svg>
<br>
<button id="1but">Start weight filling</button>
<button type="button" name="button" id="2but">Clear Canvas</button>
<script type="text/javascript" src="script.js">
</script>
</body>
</html>