-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
96 lines (75 loc) · 3.53 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
<!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">
<script src="https://kit.fontawesome.com/8867491789.js" crossorigin="anonymous"></script>
<title>TRAVEL WEBSITE | WELCOME</title>
</head>
<body>
<nav class="navbar bg-dark">
<div class="container">
<h1 class="logo lg-heading text-light border">WT</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-form">
<div class="container">
<div class="form-wrapper">
<div class="company-address">
<div class="address-group">
<i class="fas fa-map-marker-alt fa-3x text-red"></i>
<h2 class="text-gray md-heading">location</h2>
<p>Sikrodhi Hamirpur (210505) U.P..</p>
</div>
<div class="address-group">
<i class="far fa-envelope fa-3x text-red"></i>
<h2 class="text-gray md-heading">email</h2>
<p>[email protected]</p>
</div>
<div class="address-group">
<i class="fas fa-phone-square-alt fa-3x text-red"></i>
<h2 class="text-gray md-heading">call me</h2>
<p>+91 8318854303</p>
</div>
<img src="./img/location.jpg" alt="company-image">
</div>
<form action="" class="form" method="POST">
<h1 class="lg-heading text-black">Contact us</h1>
<p class="text-gray">Let you know your answer , suggetions and concerns by filling out the containt form below</p>
<div class="form-group">
<label for="username">username</label>
<input type="text" name="" id="username">
</div>
<div class="form-group">
<label for="mail">gmail</label>
<input type="mail" name="" id="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="massege">massege</label>
<textarea name="" id="massege" required ></textarea>
</div>
<button type="submit" class="form-btn text-light" >submit</button>
</form>
</div>
</div>
</section>
<footer class="footer">
<div class="social-media-links">
<i class="fab fa-facebook fa-4x"></i>
<i class="fab fa-twitter fa-4x"></i>
<i class="fab fa-instagram fa-4x"></i>
</div>
<p>world travel © 2020, all rights riserved</p>
</footer>
</body>
</html>