-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
66 lines (60 loc) · 2.39 KB
/
formulario.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
66
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Página de Pizzaria">
<meta name="keywords" content="pizza, food, delivery, restaurante">
<meta name="author" content="Dayana Mariano">
<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=Fira+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="icon" href="img/pizza.png">
<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=Fira+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="formulario.css">
<title>Formulário</title>
</head>
<body>
<header id="inicio">
<img src="img/logopizzatime.png" alt="logo">
<nav>
<a href="./index.html" >Início</a>
<a href="./index.html">Menu</a>
<a href="./index.html">Tabela</a>
<i class="fa-solid fa-magnifying-glass"></i>
<i class="fa-solid fa-cart-shopping"></i>
<a href="./index.html" class="botãoVermelho">Voltar</a>
</nav>
</header>
<main id="cadastro">
<h2>Cadastro</h2>
<p>Cadastre-se pare fazer o seu pedido</p>
<form method="post" action="https://652d071ef9afa8ef4b26a631.mockapi.io/posts" target="_blank">
<label for="name">Nome:
<input type="text" id="name" name="name" required placeholder="seu nome">
</label>
<label for="city">Cidade:
<input type="text" id="city" name="city" required placeholder="sua cidade">
</label>
<label for="email">Email:
<input type="email" id="email" name="email" placeholder="seu e-mail">
</label>
<label for="age">Idade:
<input type="number" id="age" name="age" required placeholder="sua idade">
</label>
<label for="hobby">Feedback:
<textarea id="Feedback" name="Feedback"></textarea>
</label>
<label for="submit" id="submit">
</label>
<input type="submit" value="Enviar" class="botãoVermelho">
</form>
</main>
<footer>
<p>Desenvolvido com amor pelo grupo 5 - Ada techo & IFood</p>
</footer>
</body>
</html>