-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 865 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Water Tank</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="info">
Impurity can be induced by clicking anywhere on the canvas. On clicking the clean tank button, charcoal is induced.
The charocoal absorbs the carbon-based impurity due to its large surface area. At the end left-over charcoal can be removed
using remove charcoal button.
</div>
<canvas></canvas>
<div class='wrapper'>
<div id="info-btn">about</div>
<div id="clean-btn">start cleaning</div>
<p id="purity-concentration-marker"></p>
<p id="charcoal-concentration-marker"></p>
</div>
<script src='./canvas.js'></script>
</body>
</html>