-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.56 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Emanuel Quintino" />
<meta name="creator" content="Reprograma Jucás" />
<meta
name="description"
content="O Spaceship Game é um jogo criado para encerramento do módulo de JavaScript no curso de Desenvolvimento Web ofertado pelo projeto Reprograma Jucás"
/>
<link rel="shortcut icon" href="images/spaceship0.gif" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/start.css" />
<script src="./scripts/start.js" defer></script>
<title>Spaceship-Game | Reprograma Jucás</title>
</head>
<body>
<main class="startGameContainer">
<img
src="./images/logo-reprograma-jucas.png"
alt="Reprograma Jucás"
class="logoRJ"
/>
<h1>SPACESHIP-GAME</h1>
<form id="newGameForm">
<label for="name" class="srOnly">Nome:</label>
<input type="text" id="name" placeholder="Digite seu nome" autofocus required />
</form>
<button class="startGameButton" type="submit" form="newGameForm">Novo Jogo</button>
<footer>
<button type="button" class="buttonRank">Rank</button>
</footer>
</main>
</body>
</html>