-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (51 loc) · 1.61 KB
/
contact.html
File metadata and controls
53 lines (51 loc) · 1.61 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
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Contact Page</title>
</head>
<body>
<div class="wrapper">
<header>
<div class="contact-banner">
<h2>Oh hello there!</h2>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">Our offer</a></li>
<li><a href="index.html">Why us</a></li>
<li><a href="contact.html" class="current">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="contact">
<div>
<h2>Whats on your mind?</h2>
</div>
<div>
<form action="#">
<p>Your email</p>
<input type="text">
<p>Your message</p>
<textarea name="" id="" cols="30" rows="10"></textarea>
<button>SEND MESSAGE</button>
</form>
</div>
</section>
</main>
<footer class="contact-footer">
<div class="background">
<div class="contact-card">
<h2>Come visit us!</h2>
<p>2219 Griffin Street</p>
<p>San Fransisco</p>
</div>
</div>
</footer>
</div>
</body>
</html>