-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 966 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="html, css, javascript" />
<meta name="author" content="Renan Lima" />
<link rel="stylesheet" href="./css/style.css" />
<script src="./js/script.js" defer></script>
<title>Practicum Game</title>
</head>
<body>
<div class="game-board">
<img src="./images/clouds.png" alt="clouds" class="clouds" />
<div class="score">
<h1 class="score-title">Score</h1>
<h2 class="score-points">0</h2>
</div>
<h1 class="game-over">GAME OVER</h1>
<img src="./images/flag-animated.gif" alt="flag" class="flag" />
<img src="./images/sonic-1.gif" alt="sonic" class="sonic" />
<img src="./images/pine.gif" alt="pine" class="pine" />
</div>
</body>
</html>