-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.47 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulário de Cadastro</title>
<link rel="stylesheet" href=" https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./main.css">
</head>
<body>
<div class="row">
<div class="col">
<div class="container">
<h2>Entre em contato</h2>
<form>
<label for="nome" class="form-label">Nome</label>
<input class="form-control" type="text" id="nome">
<label for="email" class="form-label">E-mail</label>
<input type="email" class="form-control" id="email">
<label for="tel" class="form-label">Telefone</label>
<input type="tel" class="form-control " id="tel">
<div class="form-check form-switch">
<label for="aceito-termos" class="form-check-label">Li e concordo com os termos</label>
<input type="checkbox" class="form-check-input" id="aceito-termos">
</div>
<button class="btn btn-success">Enviar</button>
</form>
</div>
</div>
</div>
</body>
</html>