blob: 6036bd30b84b90c57aa288a7131a8453d83d323a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<title>IoT Project</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<p id="instructions">
Click anywhere on the screen to move the robot!
</p>
<button id="reset">Reset map</button>
<canvas id="drawing-board">
<div id="robot"></div>
</canvas>
<script src="./index.js"></script>
</body>
</html>
|