-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) · 705 Bytes
/
index.html
File metadata and controls
29 lines (23 loc) · 705 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
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="main.css">
<h1 id="title">Math Cloud</h1>
<style>
img{
display: none;
}
</style>
</head>
<body class="body">
<img id = "rainDrop" src = "waterPNG.png">
<img id = "cloud" src = "CloudPNG.png">
<img id = "bg" src = "mapPNG.png">
<img id = "f" src = "WaterFaucet.png">
<canvas id = "stage" width="920" height="580">
<br>
<br>
<script src="MathCloud.js"></script> <!--type = "module" has an error. May need to fix later-->
</body>
</html>