-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (26 loc) · 1.1 KB
/
index.html
File metadata and controls
36 lines (26 loc) · 1.1 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/login.css">
<link rel="shortcut icon" type="imagex/png" href="./img/viking-shortcut.png">
<script src="./js/login.js" defer></script>
<title>Jogo da Memória | Login</title>
</head>
<body>
<form class="login-form">
<div class="login-header">
<img src="./img/vikings-logo2.png" alt="viking-icon">
<h1>JOGO DA MEMÓRIA</h1>
</div>
<input type="text" placeholder="Seu nome, guerreiro(a)" class="login-input">
<!-- <p class="login-alert">Mínimo de 3 caracteres</p> -->
<button type="submit" class="login-button" disabled>Jogar</button>
<!-- <img src="./img/ragnar-bg.png" alt="ragnar-lothbrok" class="ragnar"> -->
<!-- <img src="./img/lagherta-bg.png" alt="lagherta" class="lagherta"> -->
</form>
</body>
</html>