-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.18 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
<!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">
<link href="./css/styles.css" rel="stylesheet">
<title>Etch-A-Sketch</title>
</head>
<body class="flex">
<div class="etch-container flex border">
<img class='logo' src="./img/Chorn Logo1200goldemboss2.png">
<div class="title border flex" >
<p class="support-text">MAGIC </p>
<p class="title-text">Etch A Sketch</p>
<p class="support-text"> SCREEN</p>
</div>
<div class="screen-container flex border">
<!-- created div grid go here -->
</div>
<div class="bottom-container flex border">
<div class="knob border"><img class="knob-x" src="./img/Chorn-cog.png" alt="chorn logo with a cog"></div>
<div class="button-container border">
<input type="text" class="input">
<div class="button reset">Clear</div>
</div>
<div class="knob border"><img class="knob-y" src="./img/Chorn-cog.png" alt="chorn logo with a cog"></div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>