-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
94 lines (82 loc) · 3.77 KB
/
contact.html
File metadata and controls
94 lines (82 loc) · 3.77 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
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
<!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">
<link rel="shortcut icon" href="./Image/Travel-Bus.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<title>Contact page</title>
</head>
<body>
<nav class="nav-bar bg-dark">
<div class="container">
<h1 class="logo lg-heading text-light">WANDRER</h1>
<ul class="nav-items">
<li class="nav-item"> <a href="./index.html">Home</a> </li>
<li class="nav-item"><a href="./about.html">About</a></li>
<li class="nav-item"><a href="./contact.html">Contact</a></li>
</ul>
</div>
</nav>
<section class="contact">
<div class="container">
<div class="form-wrapper">
<div class="company-address">
<div class="loction address">
<i class="fas fa-map-marker-alt fa-2x text-red"></i>
<h2 class="text-grey md-heading"> Location</h2>
<p>#XYZ Building Delhi, Pincode : 110085 </p>
</div>
<div class="e-mail address">
<i class="fas fa-envelope fa-2x text-red"></i>
<h2 class="text-grey md-heading">E-mail</h2>
<p> [email protected] </p>
</div>
<div class="call address">
<i class="fas fa-phone-alt fa-2x text-red"></i>
<h2 class="text-grey md-heading">Call</h2>
<p>+91 XXXXXXXXXX</p>
</div>
<div class="contact-img">
<img src="./Image/company-img.jpg" alt="Company">
</div>
</div>
<form action="" class="form">
<h2 class="lg-heading text-black">Contact Us</h2>
<p class="text-grey">Let us know your Question, Suggestion and concern the filling out form below.</p>
<div class="form-group">
<label for="username">Username</label>
<input type="text" name="" id="username" required>
</div>
<div class="form-group">
<label for="e-mail">E-mail</label>
<input type="e-mail" name="" id="e-mail" required>
</div>
<div class="form-group">
<label for="Phone">Phone</label>
<input type="text" name="" id="Phone" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea name="" id="message" cols="30" rows="10" required></textarea>
</div>
<button type="submit" class="form-btn">Submit</button>
</form>
</div>
</div>
</section>
<footer class="foot">
<div class="container">
<div class="social-fonts">
<a href="https://www.facebook.com" target="_blank"> <i class="fab fa-facebook fa-3x spac"></i></a>
<a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram fa-3x spac"></i></a>
<a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter fa-3x spac"></i></a>
</div>
<div class="bottom">
<p>WANDRER © 2024 | All Right are Reserved</p>
</div>
</div>
</footer>
</body>
</html>