-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
239 lines (215 loc) · 13.4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tancredo Bet - Projeto Escolar</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>⚽ Tancredo Bet 🏆</h1>
<p>📝 Projeto escolar feito por Kauã Camargo Ribeiro</p>
</header>
<main>
<section class="betting">
<h2>Faça sua aposta! 🎯</h2>
<!-- Jogos -->
<div class="match">
<p>🏟️ <strong>Brasil 🇧🇷</strong> vs <strong>Argentina 🇦🇷</strong></p>
<label for="bet-brasil">Brasil: </label>
<input type="number" id="bet-brasil" placeholder="0">
<label for="bet-argentina">Argentina: </label>
<input type="number" id="bet-argentina" placeholder="0">
<button onclick="placeBet('brasil', 'argentina', 'result-brasil-argentina')">💸 Apostar</button>
<div id="result-brasil-argentina" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Flamengo 🔴⚫</strong> vs <strong>Vasco ⚪⚫</strong></p>
<label for="bet-flamengo">Flamengo: </label>
<input type="number" id="bet-flamengo" placeholder="0">
<label for="bet-vasco">Vasco: </label>
<input type="number" id="bet-vasco" placeholder="0">
<button onclick="placeBet('flamengo', 'vasco', 'result-flamengo-vasco')">💸 Apostar</button>
<div id="result-flamengo-vasco" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Real Madrid ⚪</strong> vs <strong>Barcelona 🔵🔴</strong></p>
<label for="bet-madrid">Real Madrid: </label>
<input type="number" id="bet-madrid" placeholder="0">
<label for="bet-barcelona">Barcelona: </label>
<input type="number" id="bet-barcelona" placeholder="0">
<button onclick="placeBet('madrid', 'barcelona', 'result-madrid-barcelona')">💸 Apostar</button>
<div id="result-madrid-barcelona" class="bet-result"></div>
</div>
<!-- Adicionando mais 17 jogos -->
<div class="match">
<p>🏟️ <strong>Manchester United 🔴</strong> vs <strong>Liverpool 🔴</strong></p>
<label for="bet-mu">Manchester United: </label>
<input type="number" id="bet-mu" placeholder="0">
<label for="bet-liverpool">Liverpool: </label>
<input type="number" id="bet-liverpool" placeholder="0">
<button onclick="placeBet('mu', 'liverpool', 'result-mu-liverpool')">💸 Apostar</button>
<div id="result-mu-liverpool" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Bayern Munich 🔴</strong> vs <strong>Dortmund 🟡⚫</strong></p>
<label for="bet-bayern">Bayern Munich: </label>
<input type="number" id="bet-bayern" placeholder="0">
<label for="bet-dortmund">Dortmund: </label>
<input type="number" id="bet-dortmund" placeholder="0">
<button onclick="placeBet('bayern', 'dortmund', 'result-bayern-dortmund')">💸 Apostar</button>
<div id="result-bayern-dortmund" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Juventus ⚪⚫</strong> vs <strong>AC Milan ⚫🔴</strong></p>
<label for="bet-juventus">Juventus: </label>
<input type="number" id="bet-juventus" placeholder="0">
<label for="bet-acmilan">AC Milan: </label>
<input type="number" id="bet-acmilan" placeholder="0">
<button onclick="placeBet('juventus', 'acmilan', 'result-juventus-acmilan')">💸 Apostar</button>
<div id="result-juventus-acmilan" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>PSG 🔴🔵</strong> vs <strong>Marseille 🔵</strong></p>
<label for="bet-psg">PSG: </label>
<input type="number" id="bet-psg" placeholder="0">
<label for="bet-marseille">Marseille: </label>
<input type="number" id="bet-marseille" placeholder="0">
<button onclick="placeBet('psg', 'marseille', 'result-psg-marseille')">💸 Apostar</button>
<div id="result-psg-marseille" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Porto 🔵⚪</strong> vs <strong>Benfica 🔴⚪</strong></p>
<label for="bet-porto">Porto: </label>
<input type="number" id="bet-porto" placeholder="0">
<label for="bet-benfica">Benfica: </label>
<input type="number" id="bet-benfica" placeholder="0">
<button onclick="placeBet('porto', 'benfica', 'result-porto-benfica')">💸 Apostar</button>
<div id="result-porto-benfica" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Inter de Milão ⚫🔵</strong> vs <strong>Lazio 🔵⚪</strong></p>
<label for="bet-inter">Inter de Milão: </label>
<input type="number" id="bet-inter" placeholder="0">
<label for="bet-lazio">Lazio: </label>
<input type="number" id="bet-lazio" placeholder="0">
<button onclick="placeBet('inter', 'lazio', 'result-inter-lazio')">💸 Apostar</button>
<div id="result-inter-lazio" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Arsenal 🔴⚪</strong> vs <strong>Chelsea 🔵</strong></p>
<label for="bet-arsenal">Arsenal: </label>
<input type="number" id="bet-arsenal" placeholder="0">
<label for="bet-chelsea">Chelsea: </label>
<input type="number" id="bet-chelsea" placeholder="0">
<button onclick="placeBet('arsenal', 'chelsea', 'result-arsenal-chelsea')">💸 Apostar</button>
<div id="result-arsenal-chelsea" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Atlético Madrid 🔴⚪</strong> vs <strong>Sevilla ⚪🔴</strong></p>
<label for="bet-atletico">Atlético Madrid: </label>
<input type="number" id="bet-atletico" placeholder="0">
<label for="bet-sevilla">Sevilla: </label>
<input type="number" id="bet-sevilla" placeholder="0">
<button onclick="placeBet('atletico', 'sevilla', 'result-atletico-sevilla')">💸 Apostar</button>
<div id="result-atletico-sevilla" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Napoli ⚪🔵</strong> vs <strong>Roma 🔴</strong></p>
<label for="bet-napoli">Napoli: </label>
<input type="number" id="bet-napoli" placeholder="0">
<label for="bet-roma">Roma: </label>
<input type="number" id="bet-roma" placeholder="0">
<button onclick="placeBet('napoli', 'roma', 'result-napoli-roma')">💸 Apostar</button>
<div id="result-napoli-roma" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Galatasaray 🔴🟡</strong> vs <strong>Fenerbahçe 🔵🔵</strong></p>
<label for="bet-galatasaray">Galatasaray: </label>
<input type="number" id="bet-galatasaray" placeholder="0">
<label for="bet-fenerbahce">Fenerbahçe: </label>
<input type="number" id="bet-fenerbahce" placeholder="0">
<button onclick="placeBet('galatasaray', 'fenerbahce', 'result-galatasaray-fenerbahce')">💸 Apostar</button>
<div id="result-galatasaray-fenerbahce" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Portimonense ⚪🔵</strong> vs <strong>Marítimo 🟢</strong></p>
<label for="bet-portimonense">Portimonense: </label>
<input type="number" id="bet-portimonense" placeholder="0">
<label for="bet-marítimo">Marítimo: </label>
<input type="number" id="bet-marítimo" placeholder="0">
<button onclick="placeBet('portimonense', 'maritimo', 'result-portimonense-marítimo')">💸 Apostar</button>
<div id="result-portimonense-marítimo" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Salzburg ⚪🔴</strong> vs <strong>Red Bull ⚫🔴</strong></p>
<label for="bet-salzburg">Salzburg: </label>
<input type="number" id="bet-salzburg" placeholder="0">
<label for="bet-redbull">Red Bull: </label>
<input type="number" id="bet-redbull" placeholder="0">
<button onclick="placeBet('salzburg', 'redbull', 'result-salzburg-redbull')">💸 Apostar</button>
<div id="result-salzburg-redbull" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Zenit ⚪🔵</strong> vs <strong>Dynamo Moscow 🟠🔵</strong></p>
<label for="bet-zenit">Zenit: </label>
<input type="number" id="bet-zenit" placeholder="0">
<label for="bet-dynamo">Dynamo Moscow: </label>
<input type="number" id="bet-dynamo" placeholder="0">
<button onclick="placeBet('zenit', 'dynamo', 'result-zenit-dynamo')">💸 Apostar</button>
<div id="result-zenit-dynamo" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Club América 🔵🔶</strong> vs <strong>Cruz Azul 🔵</strong></p>
<label for="bet-america">Club América: </label>
<input type="number" id="bet-america" placeholder="0">
<label for="bet-cruzazul">Cruz Azul: </label>
<input type="number" id="bet-cruzazul" placeholder="0">
<button onclick="placeBet('america', 'cruzazul', 'result-america-cruzazul')">💸 Apostar</button>
<div id="result-america-cruzazul" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Toronto FC 🔴⚪</strong> vs <strong>LA Galaxy 🔵⚪</strong></p>
<label for="bet-toronto">Toronto FC: </label>
<input type="number" id="bet-toronto" placeholder="0">
<label for="bet-lagalaxy">LA Galaxy: </label>
<input type="number" id="bet-lagalaxy" placeholder="0">
<button onclick="placeBet('toronto', 'lagalaxy', 'result-toronto-lagalaxy')">💸 Apostar</button>
<div id="result-toronto-lagalaxy" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Chicago Fire 🔴</strong> vs <strong>NYCFC 🔵⚪</strong></p>
<label for="bet-chicago">Chicago Fire: </label>
<input type="number" id="bet-chicago" placeholder="0">
<label for="bet-nycfc">NYCFC: </label>
<input type="number" id="bet-nycfc" placeholder="0">
<button onclick="placeBet('chicago', 'nycfc', 'result-chicago-nycfc')">💸 Apostar</button>
<div id="result-chicago-nycfc" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Monterrey 🔵⚪</strong> vs <strong>Pumas 🔵</strong></p>
<label for="bet-monterrey">Monterrey: </label>
<input type="number" id="bet-monterrey" placeholder="0">
<label for="bet-pumas">Pumas: </label>
<input type="number" id="bet-pumas" placeholder="0">
<button onclick="placeBet('monterrey', 'pumas', 'result-monterrey-pumas')">💸 Apostar</button>
<div id="result-monterrey-pumas" class="bet-result"></div>
</div>
<div class="match">
<p>🏟️ <strong>Gremio 🔵⚪</strong> vs <strong>Internacional 🔴⚪</strong></p>
<label for="bet-gremio">Gremio: </label>
<input type="number" id="bet-gremio" placeholder="0">
<label for="bet-internacional">Internacional: </label>
<input type="number" id="bet-internacional" placeholder="0">
<button onclick="placeBet('gremio', 'internacional', 'result-gremio-internacional')">💸 Apostar</button>
<div id="result-gremio-internacional" class="bet-result"></div>
</div>
</section>
</main>
<footer>
<p>© 2024 Tancredo Bet - Todos os direitos reservados a Kauã Camargo Ribeiro</p>
</footer>
<script src="script.js"></script>
</body>
</html>