-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (50 loc) · 1.53 KB
/
index.html
File metadata and controls
67 lines (50 loc) · 1.53 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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Wars</title>
<link rel="stylesheet" href="css/main.css" />
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Bangers&display=swap" rel="stylesheet">
</head>
<body>
<main class="app">
<header class="header">
<h1 class="logo">
<span>GitHub</span>
<strong>Wars</strong>
</h1>
</header>
<section class="battle">
<article class="player player--blue">
<h2>#TeamBlue</h2>
<input
type="text"
id="desafianteAzul"
placeholder="Usuário GitHub"
/>
<div class="avatar" id="avatarBlue">?</div>
<ul class="stats" id="statsBlue"></ul>
<div class="total" id="totalPontosAzul">Total: 0</div>
</article>
<div class="vs">VS</div>
<article class="player player--red">
<h2>#TeamRed</h2>
<input
type="text"
id="desafianteVermelho"
placeholder="Usuário GitHub"
/>
<div class="avatar" id="avatarRed">?</div>
<ul class="stats" id="statsRed"></ul>
<div class="total" id="totalPontosVermelho">Total: 0</div>
</article>
</section>
<footer class="actions">
<button id="btnFight">Fight</button>
<button onclick="location.reload()">Reset</button>
</footer>
</main>
<script src="scripts/main.js"></script>
</body>
</html>