-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (53 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
<!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="src/css/reset.css">
<link rel="stylesheet" href="src/css/style.css">
<link rel="stylesheet" href="src/css/mobile.css">
<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=Inconsolata:wght@200;300;500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/4ce637ec4c.js" crossorigin="anonymous"></script>
<title>Formulário de Cadastro</title>
<link rel="icon" type="image/x-icon" href="src/img/favicon.ico">
</head>
<body>
<div id="header">
<div class="logo">
<h1> <a href="./index.html"><img class="logomarca" src="./src/img/logo.png" alt="Logo Resilia módulo 1"></a></h1>
</div>
<div class="menu">
<ul>
<a href="./index.html"><li>Início</li></a>
<a href="#"><li>Quem Somos</li></a>
<a href="#"><li>Contato</li></a>
</ul>
</div>
</div>
<div class="main">
<div class="caixa_texto">
</div>
<div class="formulario">
<form>
<label class="titulos_form">E-mail</label>
<input type="email" tabindex="1" placeholder="Ex. [email protected]">
<p class="titulos_form">Nome completo</p>
<input type="text" tabindex="2" placeholder="Nome Completo">
<label class="titulos_form">CPF</label>
<input type="text" placeholder="CPF - Ex. xxx.xxx.xxx-xx" tabindex="3">
<label class="titulos_form">Data de nascimento</label>
<input type="date" tabindex="4" >
<p class="botao" tabindex="5" ><a href="#">ENVIAR</a></p>
</form>
</div>
</div>
<div id="footer">
<a href="https://facebook.com/systemilc" target="_blank"><img src="./src/img/icon/facebook.svg"></a>
<a href="https://github.com/systemilc" target="_blank"><img src="./src/img/icon/github.svg"></a>
<a href="https://instagram.com/systemilc" target="_blank"><img src="./src/img/icon/instagram.svg"></a>
</div>
</body>
</html>