-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (55 loc) · 2.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Score Keeper</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-half is-offset-one-quarter">
<div class="card">
<figure class="image is-2by1">
<img src="ping.png" alt="ping-pong">
</figure>
<header class="card-header">
<p class="card-header-title">
Acompanhe seu placar no Ping Pong
</p>
</header>
<div class="card-content">
<div class="content">
<h1 class="title is-1"><span id="p1Display">0</span> a <span id="p2Display">0</span>
</h1>
<p class="subtitle">Use os botões abaixo para acompanhar o resultado</p>
<label for="playto" class="label is-large is-inline">Ganha quem fizer:</label>
<div class="select is-rounded">
<select name="" id="playto">
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
</div>
</div>
</div>
<footer class="card-footer">
<button class="button is-primary card-footer-item" id="p1add">+1 Jogador Um</button>
<button class="button is-info card-footer-item" id="p2add">+1 Jogador Dois</button>
<button class="button is-danger card-footer-item" id="reset">Reset</button>
</footer>
</div>
</div>
</div>
</div>
</section>
<script src="app.js"></script>
</body>
</html>