-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
69 lines (55 loc) · 2.68 KB
/
contato.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
<!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">
<title>Contato</title>
<link rel="apple-touch-icon" sizes="180x180" href="./midia/icon-apple.png">
<link rel="icon" type="image/png" sizes="16x16" href="./midia/icon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="./midia/icon-32x32.png">
<link rel="stylesheet" href="./style-contato.css">
</head>
<body>
<header>
<nav>
<ul>
<a href="./index.html"> <li>HOME</li></a>
<a href="./curiosidades.html"><li>CURIOSIDADES</li></a>
<a href="./fotos.html"><li>FOTOS</li></a>
</ul>
</nav>
</header>
<div class="container">
<div class="content">
<h1 id="content">Olá, Eu sou Iasmin Silva</h1>
<p>
Este é o meu primeiro projeto!<br>
Estou muito feliz com o resultado e se você também gostou mande seus elogios ou sugestões para trocarmos idéias.
</p>
<p>
Que tal criarmos um <a href="./grupo.html"><button class="grupo" >grupo</button></a> para dividir conhecimento?
</p>
<div class="icones">
<img src="./midia/Melhor-Curso-de-HTML5-e-CSS3-1900x946_c-removebg-preview.png" width="100px"/>
</div>
</div>
<div class="content-2">
<h1 id="content-2">CONTATO</h1>
<form target="_blank" action="https://formsubmit.co/csilvaiasmin@gmail.com" method="POST">
<label for="text">Seu Nome</label>
<input style="display: flex" id="text" type="text" name="nome" />
<label for="email">Email</label>
<input style="display: flex;" id="email" type="email" name="email" />
<label for="number">Seu Número</label>
<input style="display: block" id="number" type="number" name="número" />
<label for="file">Seu projeto</label>
<input style="display :block" id="file" type="file" name="projeto" />
<label for="textarea">Mensagem</label>
<textarea style="display: block" id="textarea" name="mensagem" rows="6"></textarea>
<button class="button">Enviar</button>
</form>
</div>
</div>
</body>
</html>