forked from Oliver-Redeyoff/Tedward
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 890 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (21 loc) · 890 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
</head>
<body>
<img src="assets/robot.png"></img>
<h1 id="title">Network creation tool</h1>
<p onclick="addChild(0)">By mlady</p>
<canvas id="myCanvas" width="1000" height="600" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<div class="buttonWrap">
<button class="customButton" onclick="addChild()">Add Node</button>
<button class="customButton" onclick="removeNode()">Delete Node</button>
<button class="customButton" onclick="sendHandler()">Send Car</button>
<button class="customButton" onclick="saveNetwork()">Save network</button>
<button class="customButton" onclick="loadNetwork()">Load Recent</button>
</div>
</body>
<script src="script.js"></script>
</html>