-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
55 lines (53 loc) · 2.14 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>Contact Us</title>
<link rel="stylesheet" href="styling.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body class="contact-body">
<header>
<h2 class="logo">travel<strong>NOW</strong></h2>
<nav class="navigation">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="Airlines.html">Partners</a>
<a href="booking.html">Bookings</a>
<a href="gallery.html">Destinations</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class="holder">
<h1 class="contact-us">Contact Us</h1>
<div class="contact-container">
<div class="section contact-info">
<h2 class="heading">Contact Information</h2>
<div class="contact-card">
<span class="icon"><i class="fas fa-map-marker-alt"></i></span>
<p class="text">123 Main Street, City, Country</p>
</div>
<div class="contact-card">
<span class="icon"><i class="fas fa-phone"></i></span>
<p class="text">+9018594782</p>
</div>
<div class="contact-card">
<span class="icon"><i class="fas fa-envelope"></i></span>
<p class="text">[email protected]</p>
</div>
</div>
<div class="section email-form">
<h2 class="heading">Send Us an Email</h2>
<form class="form">
<input type="text" class="input" placeholder="Your Name">
<input type="email" class="input" placeholder="Your Email">
<textarea class="textarea" placeholder="Your Message"></textarea>
<button type="submit" class="button">Send</button>
</form>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/your-fontawesome-kit.js" crossorigin="anonymous"></script>
</body>
</html>