-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
49 lines (44 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Game | Login</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/login.css">
<script defer src="./js/login.js"></script>
</head>
<body>
<form class="login-form">
<div class="login_header">
<img class="logo_game" src="./images/logo_game.png" alt="logo">
</div>
<!-- <input type="text" placeholder="Name" class="login_input"> -->
<!-- <button type="submit" class="login_button" disabled>Start Game</button> -->
<section class="game_select">
<ul class="listgame">
<li class="game onePiece">
<h1 class="title_game">One Piece</h1>
<img class="img_game" src="./images/onepiecegm.jpg" alt="One Piece jogo da Memória">
<button class="playgame"><a href="./pages/game.html">jogar</a></button>
</li>
<li class="game onePiece">
<h1 class="title_game">Jujutsu Kaizen</h1>
<img class="img_game" src="./images/jujutsugm.jpg" alt="Jujutsu Kaizen jogo da Memória">
<button class="playgame"><a href="./pages/jujutsu.html">jogar</a></button>
</li>
<li class="game onePiece">
<h1 class="title_game">Atack on Titã</h1>
<img class="img_game" src="./images/ATOTGM.jpg" alt="Atack on Titã jogo da Memória">
<button class="playgame"><a href="./pages/atot.html">jogar</a></button>
</li>
<li class="game onePiece">
<h1 class="title_game">Demon Slayer</h1>
<img class="img_game" src="./images/demonslayergm.jpg" alt="Demon Slayer jogo da Memória">
<button class="playgame"><a href="./pages/demonslayer.html">jogar</a></button>
</li>
</ul>
</section>
</form>
</body>
</html>