-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.29 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AnalogueSpirit</title>
<link rel = "stylesheet" href="./style.css">
</head>
<body>
<h1 id = "title">Analogue Spirit</h1>
<div class = "content">
<div id="headers">
<input id="colorPicker" type="color" value="#333333"/>
<button class = "colorBtn">Color Pen</button>
<button class = "rainbowBtn">Rainbow Pen</button>
<button class = "shader">Shader Pen</button>
<button class = "eraser">Eraser</button>
<button class = "clear">Restart</button>
<div class = 'density'>
<input id = "slider" type = 'range' min = '16' max = '100' value="16" class="slider" id ="myRange">
<p>Grid Density: <span id = 'sliderValue'></span></p>
</div>
</div>
<div class="container"></div>
</div>
<footer class="footer">
<p>
Copyright ©
<script>
document.write(new Date().getFullYear())
</script>
mengxihe
</p>
</footer>
<script src="script.js"></script>
</body>
</html>