-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcontato.html
More file actions
49 lines (46 loc) · 1.3 KB
/
contato.html
File metadata and controls
49 lines (46 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contato</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<div>
<img src="img/logo.png" alt="icone de camera fotografica">
<p>Landseeker</p>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<img src="img/menu-hamburguer.jpg" alt="icone menu">
</nav>
</header>
<main>
<div>
<h1>Contact Us!</h1>
</div>
<form action="#">
<label for="">Name</label>
<input type="text">
<label for="">E-mail</label>
<input type="email">
<label for="">Message</label>
<textarea name="name" rows="8" cols="80"></textarea>
<div>
<input type="checkbox">
<label for="">Don't post my name</label>
<button type="submit" name="button">Send</button>
</div>
</form>
</main>
<footer>
<p>Copyright © Digital House</p>
</footer>
</body>
</html>