-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.html
99 lines (82 loc) · 3.08 KB
/
feedback.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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">
<!-- Montserrat Font -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="imagens/Sonya-Swarm-Fast-Food.ico" type="image/x-icon">
<!-- CSS utilizado -->
<link rel="stylesheet" href="css/loader.css">
<link rel="stylesheet" href="css/menu_superior.css">
<link rel="stylesheet" href="css/section.css">
<link rel="stylesheet" href="css/feedback.css">
<!-- Ícones utilizados -->
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<!-- Sliders -->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<title>EasyFood</title>
</head>
<body>
<header>
<input type="checkbox" id="toggle">
<nav>
<ul class="nav-list">
<li class="nav-item">
<a class="nav-link" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cardapio.html">Cardápio</a>
</li>
<a class="logo desktop" href="home.html">
<img src="./imagens/Sonya-Swarm-Fast-Food.ico" alt="">
</a>
<li class="nav-item">
<a class="nav-link" href="sobre.html">Sobre</a>
</li>
<li class="nav-item">
<a class="nav-link" href="feedback.html">Feedback</a>
</li>
</ul>
<label class="navbar-toggler" for="toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</label>
</nav>
<div class="logo-mobile">
<a class="mobile" href="home.html">
<img src="./imagens/Sonya-Swarm-Fast-Food.ico" alt="">
</a>
</div>
<a href="login.html" class="user">
<i class="ph ph-user"></i>
<p>Login</p>
</a>
<a href="carrinho.html" class="carrinho">
<i class="ph ph-shopping-cart"></i>
<p>Cesta</p>
</a>
</header>
<main>
<section class="feedback">
<div class="content">
<h1>Compartilhe sua Opinião Conosco</h1>
<p>Estamos sempre comprometidos com o bem estar de nossos clientes, portanto a opinião de vocês é sempre bem vinda. Mande uma mensagem pra nós na seção de Feedback e nos ajude a melhorar seu atendimento</p>
<a href="#">Mandar Feedback</a>
</div>
<img src="imagens/speak.svg" alt="">
</section>
<img src="" alt="">
<textarea name="feedback" id="feedback" cols="50" rows="20" ></textarea>
<button>Enviar</button>
</main>
<!-- Parte do Carregamento -->
<div class="loader-container">
<img src="imagens/loader-food.gif" alt="">
</div>
<script src="js/load.js"></script>
</body>
</html>