-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (37 loc) · 1.09 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>✊Pedra 📃Papel ✂️Tesoura!</title>
<link rel="stylesheet" href="./assets/styles.css" />
<link rel="icon" href="./assets/images/htmlLogo.png" />
</head>
<body>
<header>
<h1>Pedra Papel Tesoura!</h1>
</header>
<div class="scoreBoard">
<div id="userTxt" class="badge">Você</div>
<div id="computerTxt" class="badge">CPU</div>
<span id="userScore">0</span>:<span id="computerScore">0</span>
</div>
<div class="result">
<p></p>
<b></b>
</div>
<div class="choices">
<div class="choice" id="r">
<img src="assets/images/rock.png" />
</div>
<div class="choice" id="p">
<img src="assets/images/paper.png" />
</div>
<div class="choice" id="s">
<img src="assets/images/scissor.png" />
</div>
</div>
<p id="actionMessage">Faça sua jogada! 😎😉</p>
<script src="assets/app.js"></script>
</body>
</html>