-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.88 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
42
43
44
45
46
47
48
49
50
51
<!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>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="main-title"> Cyber Scribble</h1>
</header>
<div class="main-container">
<div class="btn-container">
<div class="color-container">
<button class = "indigobtn"> Indigo </button>
<button class = "redbtn"> Red </button>
<button class = "cyanbtn"> Cyan </button>
<button class = "pinkbtn"> Pink </button>
<button class = "eraserbtn"> Eraser</button>
</div>
<button class = "clearbtn"> Reset </button>
</div>
<div class="contain">
<div class="etch"></div>
</div>
<div class="slide-contain">
<h3 class="slide-label">Draw Size</h3>
<h3 class ="slide-plus">++</h3>
<input type="range" name="slide" min="2" max="64" value="16" class="slider">
<h3 class="slide-minus">--</h3>
</div>
<div class="col-contain">
<div class="current-color"></div>
</div>
</div>
<footer>
<div class="foot-contain">
<p>Made by: </p>
<a class="git-link" href="https://github.com/byfar94"> byfar94</a>
<h3> | </h3>
<a class="git-link" href="https://github.com/byfar94/etch-a-sketch-odin">Repo</a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>