-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
86 lines (78 loc) · 3.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>TRAVEL WEBSITE | CONTACTUS</title>
<script src="https://kit.fontawesome.com/898034d606.js" crossorigin="anonymous"></script>
</head>
<body>
<nav id="navi">
<div class=" bg-dark">
<div class="container">
<h1 id="logo"><i class="fa-solid fa-bus fa-beat-fade"></i></h1>
<ul id="u">
<li class="nav active"><a class="active" href="contact.html">CONTACT US</a></li> 
<li class="nav"><a href="about.html">ABOUT</a></li>  
<li class="nav" id="i"><a href="index.html">HOME</a></li>
</ul>
</div>
</div>
</nav>
<section class="contact-form "></section>
<div class="container">
<div class="form-wrapper">
<div class="compant-name">
<div class="location">
<span><i class="fa-solid fa-location-dot text-red"></i>LOCATION</span><br>
<P>#2661 Janakpuri Colony,city name,town name</P><br>
</div>
<div class="E-mail">
<span><i class="far fa-envelope text-red"></i> E-MAIL</span><br>
<p>travelwebsite@gmail.com</p><br>
</div>
<div class="call">
<span><i class="fa-solid fa-square-phone text-red"></i>CALL</span><br>
<p>+919103910382</p><br>
</div>
<img src="images/offer-img.jpg" alt="Company image">
</div>
<form action="" class="form">
<h2>Contact Us</h2>
<p class="text-gray">Got questions or feedback? We're here to help - get in touch with our friendly
customer service team today.</p>
<div class="form-group">
<label for="Username">Username</label required>
<input type="text" id="username">
</div>
<div class="form-group">
<label for="phone">Phone</label required>
<input type="text" id="Phone">
</div>
<div class="form-group">
<label for="E-mail">E-mail</label required>
<input type="text" id="E-mail">
</div>
<div class="form-group">
<label for="message">Message</label required>
<textarea name="Message" id="message" cols="30" rows="8"></textarea>
</div>
<button type="submit" class="form-btn">Submit</button>
</form>
</div>
</div>
<section class="media-box">
<div class="container">
<div class="social-media">
<i id="facebook-redirect" class="fa-brands fa-facebook-square fa-4x"></i>
<i id="twitter-redirect" class="fa-brands fa-twitter-square fa-4x"></i>
<i id="instagram-redirect" class="fa-brands fa-instagram fa-4x"></i>
</div>
<p>World Travel © 2020.All rights reserved</p>
</div>
</section>
<script src="script.js"></script>
</body>
</html>