-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
54 lines (43 loc) · 1.35 KB
/
index1.html
File metadata and controls
54 lines (43 loc) · 1.35 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
50
51
52
53
54
<!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">
<title>Login</title>
<!-- SHORCUT ICON - FAVICON -->
<link rel="shortcut icon" href="./img/favicon.png">
<!-- CSS STYLE -->
<link rel="stylesheet" href="./css/style1.css">
<!-- CSS HOVER -->
<link rel="stylesheet" href="./css/hover1.css">
<!-- CSS ANIMATION -->
<link rel="stylesheet" href="./css/animation1.css">
</head>
<body>
<!-- FORMULÁRIO -->
<form id="form" class="slide-form" method="POST">
<h1>LOGIN</h1>
<!-- NOME -->
<div>
<label for="nome">Nome: </label>
<input class="hvr-bk" type="text" id="nome" name="nome" placeholder="Digite seu nome.">
</div>
<!-- E-MAIL -->
<div>
<label for="email">Email: </label>
<input class="hvr-bk" type="email" id="email" name="email" placeholder="contato@dominío.com" >
</div>
<!-- SENHA -->
<div>
<label for="senha">Senha: </label>
<input class="hvr-bk" type="password" id="senha" name="senha" placeholder="****************">
</div>
<!-- BOTÕES -->
<div>
<button class="btn">Enviar</button>
<button class="btn">Cancelar</button>
</div>
</form>
</body>
</html>