-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (56 loc) · 2.38 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>derva | Etch-a-Sketch - TOP </title>
</head>
<body>
<header>
<div id="logo"><span id="logo-hash">#</span><span id="logo-name"><b>theodinproject</b></span></div>
<div class="project-name"><h1 id="comp-name">Project: Etch-a-sketch</h1></div>
<div class="switch-mode">
<input type="checkbox" class="checkbox" id="chx">
<label class="label" id="label" for="chx">
<i class="fa fa-moon-o"></i>
<i class="fa fa-sun-o"></i>
<div class="ball" id="ball"></div>
</label>
</div>
</header>
<main>
<div class="container">
<div class="options">
<div class="submit-row">
<input type="text" placeholder="Enter columns" id="col">
<input type="text" placeholder="Enter rows" id="rows">
<button type="submit" class="submit" id="submit" onclick="drawGrid()">SUBMIT</button>
</div>
<div class="restart-row">
<button type="submit" class="restart" onclick="reset()">RESTART</button>
</div>
</div>
</div>
<div class="grid-head" id="grid-head">
<div id="grid">
</div>
</div>
<div class="description">
<p>Hi, here is my work for task “Etch-a-sketch” project following The Odin Project - Web development 101 section.
Also feel free to visit my <b>github.com/derva</b> & <b>codepen.io/derviswebdev</b> account to see my other works :)</p>
</div>
</main>
<footer>
<div>
<a href="https://github.com/derva" target="_blank"><i class="fa fa-github" style="font-size: 30px;"></i></a>
<a href="https://codepen.io/derviswebdev" target="_blank"><i class="fa fa-codepen" style="font-size: 30px;"></i></a>
</div>
<p>
<b>© by derva | 2020 | Tuzla, Bosnia and Hercegovina</b>
</p>
</footer>
<script src="script/main.js"></script>
</body>
</html>