-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 1.62 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Jogo da memória com imagens de animes." />
<meta name="author" content="Cicero Eduardo" />
<meta name="creator" content="Reprograma Jucás" />
<link rel="shortcut icon" href="./images/logo-rj.png" 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"
/>
<title>Memory Game</title>
<link rel="stylesheet" href="./styles/newGame.css" />
<script src="./script/newGame.js" defer></script>
</head>
<body>
<div class="container">
<form class="newGameForm">
<header class="newGameHeader">
<a href="https://emanuelquintino.github.io/Page-WDC/" target="_blank">
<img
src="./images/logo-reprograma-jucas.png"
alt="logo reprograma jucás"
/>
</a>
<h1>Jogo Da Memória</h1>
</header>
<main>
<input
type="text"
placeholder="Digite seu nome"
class="inputName"
autofocus
/>
<button type="submit" class="newGameButton" disabled>
Novo Jogo
</button>
</main>
<footer>
<button type="button" class="buttonRank">Rank</button>
</footer>
</form>
</div>
</body>
</html>