-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
62 lines (39 loc) · 2.16 KB
/
cadastro.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="receita.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="shortcut icon" href="imagens/Receitas150.png" type="image/x-icon">
<title>Cadastro</title>
</head>
<body>
<nav>
<a href="home.html">Home</a>
<a href="receitas.html">Receitas</a>
<a href="cadastro.html">Cadastro</a>
</nav>
<main class="cadastro">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<h1>Efetuação de Cadastro</h1>
<label for="nome">Nome</label> <input style="margin-left: 83px;" type="text" required><br>
<label for="email">E-mail</label> <input style="margin-left: 80px;" type="email" required><br>
<label for="cep">CEP</label> <input style="width: 250px; margin-left: 93px;" type="text" required><br>
<label for="rua">Rua </label><input style="margin-left: 100px;" type="text" required> <br>
<label for="numero-casa">N°</label> <input style="width: 250px;margin-left: 108px;" type="text" required>
<label for="complemento"> Complemento</label> <input style="width: 135px; margin-left: 5px;" type="text" required><br>
<label for="cidade">Cidade</label> <input style="width: 290px; margin-left: 75px;" type="text" required> UF
<input style="width: 165px;margin-left: 14px;" type="text" required>
<button style="margin-left: 40px;" type="submit" class="btn btn-secondary">Cadastro</button>
</form>
</main>
<footer>
<p> ©Jurema 2022 </p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"></script>
</body>
</html>