-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.02 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="description"
content="Jogo da Memória feito com personagens do Studio Ghibli"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Memory Game | Login</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="icon" type="image+svg/xml" href="./imgs/card.svg" >
</head>
<body>
<form class="login-form">
<div class="login-header">
<img src="./imgs/brain.png" width="100" height="100" alt="brain" />
<h1>Memory Game</h1>
</div>
<input type="text" placeholder="Name" class="login-input" />
<button type="submit" class="login-button" disabled>Let's Go!</button>
</form>
<footer>
<a href="https://www.flaticon.com" title="icons"
>Icons created for Freepik - Flaticon 💖</a
>
</footer>
<script src="./js/login.js"></script>
</body>
</html>