-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
55 lines (55 loc) · 1.85 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section class="showcase">
<header>
<h2 class="logo">Travel</h2>
<div class="toggle"></div>
</header>
<video src="video.mp4" muted loop autoplay></video>
<div class="overlay"></div>
<div class="text">
<h2>How To Reach Us</h2>
<h3>What We Offer</h3>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Tempora fuga
sit molestias a voluptas, quas rerum consequuntur quibusdam illo
repudiandae?
</p>
<a href="index.html">Thanks For Reaching us</a>
</div>
<div class="contactForm">
<form class="form">
<h2>CONTACT US</h2>
<p type="Name:"><input type="text" placeholder="Write your name here.."></input></p>
<p type="Email:"><input type="email" placeholder="Let us know how to contact you back.."></input></p>
<p type="Message:"><input type="text" placeholder="What would you like to tell us.."></input></p>
<button>Send Message</button>
</form>
</div>
</section>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="#">Blog</a></li>
<li><a href="destinations.html">Destinations</a></li>
</ul>
<div class="copyright">
<h3>©2021 Travel All Rights Reserved.</h3>
</div>
</div>
<script src="app.js"></script>
</body>
</html>