-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (77 loc) · 3.49 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
<!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">
<script src="https://kit.fontawesome.com/1afa728260.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css-project\style-project.css">
<title>Contact page</title>
</head>
<body>
<nav class="about-header navbar">
<div class="container">
<h1 class="logo lg-heading text-light">WT</h1>
<ul class="nav-items ">
<li class="nav-item "><a class="text-light" href="./index.html">Home</a></li>
<li class="nav-item "><a class="text-light" href="./about.html">About</a></li>
<li class="nav-item"><a class="text-light" href="./contact.html">Contact</a></li>
</ul>
</div>
</nav>
<section class="contact-form container">
<div class="form-wrapper">
<div class="company-address">
<div class="address-group">
<i class="fas fa-map-marker-alt fa-9x text-red"></i>
<h2 class="md-heading">Location</h2>
<p>#1385,Madhudara,Hussainpur,Kolkata,700107</p>
<br>
</div>
<div class="address-group">
<i class="fas fa-envelope fa-9x text-red"></i>
<h2 class="md-heading"></i>E-mail</h2>
<p>[email protected]</p>
</div>
<div class="address-group">
<i class="fas fa-phone-square-alt text-red fa-9x text-red"></i>
<h2 class="md-heading">phone no</h2>
<p>+917895737382</p>
</div>
<img src="img\company-img.jpg" alt="">
</div>
<form action="" class="form">
<h1 class="text-black lg-heading">Contact Us</h1>
<p>Let us know your query,suggestions and concerns by filling out contact form below.</p>
<div class="form-group">
<label class="md-heading" for="Username">Username</label>
<input type="text" id="Username"><br><br>
</div>
<div class="form-group">
<label class="md-heading" for="E-mail" required>E-mail</label>
<input type="email" id="E-mail">
</div>
<div class="form-group">
<label class="md-heading" for="phone" required>Phone no</label>
<input type="phone" id="phone">
</div>
<div class="form-group">
<label class="md-heading" for="message">Message</label>
<textarea name="" id="" cols="140" rows="50" required></textarea>
</div>
<div class="form-group">
<button type="submit" class="form-btn">Submit</button>
</div>
</form>
</div>
</section>
<footer class="footer">
<div class="social-media_links">
<i class="fa-brands fa-facebook fa-10x"></i>
<i class="fa-brands fa-instagram fa-10x"></i>
<i class="fa-brands fa-twitter fa-10x"></i>
</div>
<p>World Travel © 2022,All right reserve</p>
</footer>
</body>
</html>