-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
55 lines (54 loc) · 1.78 KB
/
Copy pathIndex.html
File metadata and controls
55 lines (54 loc) · 1.78 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
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
<script src="main.js" defer></script>
</head>
<body>
<header>
</header>
<div id="right">
<section id = "page1" class = "mostrar">
<h1>Username</h1>
<input id="txtName" placeholder="Enter your username">
<button id = "userButton">→ Next</button>
</section>
<section id = "page2" class = "ocultar">
<div id="response"></div>
<div id="rules">Click the finger as soon as possible. </div>
<button id = "startButton">Start Game</button>
</section>
<section id ="page3" class = "ocultar">
<h1>Get ready...</h1>
</section>
<section id = "page4" class = "ocultar">
<div id= "Botonrandom">
<div id = "FingerText">Maquinon!!!</div>
<img src="/images/finger.png" alt="finger">
</div>
</section>
<section id = "page5" class = "ocultar">
<div id= "Juego">
<div id = "Time"></div>
</div>
<button id = "playAgain">⟳ Play again!</button>
</section>
</div>
<div id="left" class = "mostrar">
<h1 style="font-size: 30px; background: black;">Last Scores</h1>
<div class = "scoreResults">
<h2 id = "user1"></h2>
<p id = "score1"></p>
<h2 id = "user2"></h2>
<p id = "score2"></p>
<h2 id = "user3"></h2>
<p id = "score3"></p>
<h2 id = "user4"></h2>
<p id = "score4"></p>
</div>
</div>
</body>
</html>