-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
122 lines (113 loc) · 4.52 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | holiday</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="https://kit.fontawesome.com/7d35781f0a.js" crossorigin="anonymous"></script>
<!-- for working offline in my pc-->
<link rel="stylesheet" href="../fontawesome/css/all.css">
</head>
<body>
<header>
<nav class="navbar container">
<a href="index.html" class="logo">
<h2>HOLIDAY</h2>
</a>
<input type="checkbox" id="toggler" />
<label class="label" for="toggler">
<i class="fas fa-bars"></i>
</label>
<ul id="menu">
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="tours.html">our tours</a></li>
<li><a href="contact.html" class="active">contact</a></li>
</ul>
</nav><!-- navbar/container -->
</header><!-- header -->
<section class="hero hero-contact">
<h1>
your <span class="y-text">special</span> tour
</h1>
<h2>
for your upcoming holidays
</h2>
<a href="contact.html" class="button button-hero">
contact us
</a>
</section><!-- hero -->
<section class="top-box dg dg2 container">
<img src="img/world-map.png" alt="world map">
<article>
<h2>
<em>Lorem Isum Dolor</em>
</h2>
<h3>
Gravida nibh vel velit auctor aliquet enean sollicitudin lorem quis auctor, nisi elit consequat ipsum
</h3>
<p>
Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
</p>
<p>
Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris gestas quam, ut aliquam massa nisi.
</p>
<ul class="social">
<li><a href="#">
<i class="fab fa-twitter"></i>
</a></li>
<li><a href="#">
<i class="fab fa-facebook-f"></i>
</a></li>
<li><a href="#">
<i class="fab fa-pinterest"></i>
</a></li>
<li><a href="#">
<i class="fab fa-google-plus-g"></i>
</a></li>
</ul>
</article>
</section><!-- contact-box/container -->
<section id="contact-content">
<h1 class="section-header">contact us</h1>
<div class="contact-content dg dg2 container">
<div class="map">
<img src="img/location.jpg" alt="location map">
<ul class="social">
<li><a href="#">
<i class="fab fa-facebook-f"></i>
</a></li>
<li><a href="#">
<i class="fab fa-dribbble"></i>
</a></li>
<li><a href="#">
<i class="fab fa-twitter"></i>
</a></li>
<li><a href="#">
<i class="fab fa-instagram"></i>
</a></li>
<li><a href="#">
<i class="fab fa-google-plus-g"></i>
</a></li>
</ul>
</div>
<form action="#" class="contact-form">
<input type="text" placeholder="NAME">
<input type="email" placeholder="EMAIL">
<input type="text" placeholder="SUBJECT">
<textarea placeholder="MESSAGE"></textarea>
<button type="submit">
<em>SUBMIT NOW</em>
</button>
</form>
</div><!-- contact-content/container -->
</section><!-- contact-content -->
<footer>
<p>
Designed by <a href="https://templatemo.com">templatemo</a>. Built by <a href="https://twitter.com/TutulDevs">Tutul</a>.
</p>
</footer>
</body>
</html>