-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 825 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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dino Game</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="script.js" charset="UTF-8" defer></script>
</head>
<body>
<header>
<h1>Jogo T-Rex Game do Google Chrome</h1>
</header>
<div class="background">
<div class="scoreDisplay">
<h3 id="score">NOW: 000 </h3>
<h3 id="hiscore">HI: 000 </h3>
</div>
<div class="dino">
</div>
</div>
<footer><h3>Adaptado por André F.C. Melo</h3></footer>
</body>
</html>