-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·51 lines (45 loc) · 1.99 KB
/
index.html
File metadata and controls
executable file
·51 lines (45 loc) · 1.99 KB
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">
<link rel="icon" type="image/png" href="images/lostStar.png">
<title>May the Force Be With You!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="main-container">
<div id="overlay" class="start">
<h2 class="title">May the Force Be With You</h2>
<button class="btn__reset" >Enter Death Star</button>
</div>
<div id="banner" class="section">
<h2 class="header">Do Or Do Not. There Is No Try.</h2>
</div>
<div id="phrase" class="section">
<ul></ul>
</div>
<div id="qwerty" class="section">
<div class="keyrow">
<button>Q</button><button>W</button><button>E</button><button>R</button><button>T</button><button>Y</button><button>U</button><button>I</button><button>O</button><button>P</button>
</div>
<div class="keyrow">
<button>A</button><button>S</button><button>D</button><button>F</button><button>G</button><button>H</button><button>J</button><button>K</button><button>L</button>
</div>
<div class="keyrow">
<button>Z</button><button>X</button><button>C</button><button>V</button><button>B</button><button>N</button><button>M</button>
</div>
</div>
<div id="scoreboard" class="section">
<ol>
<li class="tries"><img src="images/liveStar.png" height="50px" width="50px"></li>
<li class="tries"><img src="images/liveStar.png" height="50px" width="50px"></li>
<li class="tries"><img src="images/liveStar.png" height="50px" width="50px"></li>
<li class="tries"><img src="images/liveStar.png" height="50px" width="50px"></li>
<li class="tries"><img src="images/liveStar.png" height="50px" width="50px"></li>
</ol>
</div>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>