-
Notifications
You must be signed in to change notification settings - Fork 0
/
mensagens.html
57 lines (48 loc) · 2.67 KB
/
mensagens.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
<!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">
<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&display=swap" rel="stylesheet">
<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=IBM+Plex+Sans:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Mensagem</title>
</head>
<body class="backgroud__mensagem">
<header>
<ul class="menu">
<li class="menu-logo"><img src="img/Logo header.svg"></li>
<li class="menu-item"><a href="index.html"><img src="img/Casa.svg" alt="ir para pagina inicial"></a></li>
<li class="menu-item"><a href="mensagens.html"><img src="img/Mensagens.svg" alt="caixa de Mensagens"></a></li>
<li class="menu-usuario"><a href="perfil.html"><img src="img/Usuário.svg" alt="entrar na minha conta"></a></li>
</ul>
<section class="Introducao__paragrafos">
<p class="paragrafo-item">Envie uma mensagem para a pessoa ou instituição que está cuidando do animal:</p>
</section>
</header>
<main>
<section class="back--envio__dados__mensagem">
<section class="envio__dados__mensagem">
<label for="nome">Nome</label>
<input type="text" id="nome" class="envio__dados__input" placeholder="Insira seu nome completo">
<label for="telefone">Telefone</label>
<input type="tel" id="telefone" class="envio__dados__input" placeholder="Insira seu telefone e/ou whatsapp">
<label for="nomedoanimal">Nome do animal</label>
<input type="text" id="nomedoanimal" class="envio__dados__input" placeholder="Por qual animal você se interessou?">
<label for="mensagem">Mensagem</label>
<textarea id="mensagem" cols="30" rows="10" class="envio__dados__input" placeholder="Escreva sua mensagem."></textarea>
<input type="button" value="Enviar" class="envio__dados__mensagem--botao">
</section>
</section>
</main>
<footer class="rodape">
<p class="rodape__paragrafo">2022 - Desenvolvido por Alura.</p>
</footer>
</body>
</html>