-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (39 loc) · 1.29 KB
/
index.html
File metadata and controls
51 lines (39 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Jogo Mario</title>
<link rel="shortcut icon" href="img/icone.png" type="image/x-icon">
</head>
<body>
<div id="container">
<header id="cabecalho-principal">
<div id="pontuacao-game">
<img src="img/moeda.png" height="20px" alt="" srcset="">
Moedas: <span id="pontuacao-atual">0</span>
</div>
<div id="nome-jogo">
Super Mario English Challenge
</div>
</header>
<section id="corpo">
<div id="esquerda">
<h3>FALE O NOME DA COR EM INGLÊS</h3>
<span id="cor-na-caixa"></span>
<div id="cor-atual">
</div>
<button id="btn-responder">RESPONDER</button>
</div>
<div id="direita">
<img src="img/mario.png" height="390px" alt="" srcset="">
</div>
</section>
<footer id="rodape">
<img src="img/logo-dio.png" height="90px" alt="" srcset="">
</footer>
</div>
<script src="js/functions.js"></script>
</body>
</html>