-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.62 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.62 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="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>Camp.in</title>
<link rel="stylesheet" href="style.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=Poppins:wght@400;500;600&family=Roboto:wght@400;500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="content">
<header>
<img src="./assets/images/logo.svg" alt="logo" class="logo" />
<div class="informacoes">
<span>
<img src="./assets/images/log-in.svg" alt="logo de login" />
<h2>Faça seu login</h2>
</span>
<p>Entre com suas informações de cadastro.</p>
</div>
</header>
<section>
<div class="login">
<h2>E-mail</h2>
<input type="email" placeholder="Digite seu email" name="" id="" />
</div>
<div class="login">
<h2>Senha</h2>
<input type="password" placeholder="Digite sua senha" name="" id="" />
</div>
<div class="check">
<input type="checkbox" name="" id="" />
<p>Lembre-me</p>
<a class="botao" href="">Esqueci minha senha</a>
</div>
</section>
<footer>
<button>Entrar</button>
<a class="botao" href="">Não tem uma conta? Registre-se</a>
</footer>
</div>
</body>
</html>