-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjade-contact.html
37 lines (32 loc) · 1.13 KB
/
jade-contact.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contato - Jade</title>
<link rel="icon" type="image/x-icon" href="./assets/icons/flower-icon.svg">
</head>
<body>
<header>
<h2> Contato - Jade </h2>
<a href="index.html"> HOME </a>
<img src="./assets/icons/flower-icon.svg" width="20px">
<a href="jade-main.html"> MINHA PÁGINA </a>
</header>
<main>
<form style="margin: 1%">
<input type="text" placeholder="Nome" required> <br>
<input type="email" placeholder="E-mail" required> <br>
<input type="telefone" placeholder="Telefone"> <br>
<textarea placeholder="Mensagem" style="resize: none;" rows="5" cols="33" required></textarea>
<button>Enviar</button>
</form>
</main>
<hr>
<footer>
<a href="https://github.com/jade-mendes" target="_blank"> GITHUB </a>
<img src="./assets/icons/flower-icon.svg" width="20px">
<a href="index.html"> HOME </a>
</footer>
</body>
</html>