forked from KhushbuY123/Tour-India.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
80 lines (76 loc) · 3.56 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Travel Website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar bg-dark">
<div class="container">
<h4 class="logo lg-heading text-red">TRAVEL</h4>
<ul class="nav-item">
<li class="nav-item"><a href="contact.html">CONTACT</a></li>
<li class="nav-item"><a href="about.html">ABOUT</a></li>
<li class="nav-item"><a href="index.html">HOME</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="fa-3x text-red"></i>
<h2 class="text-red md-heading">Location</h2>
<p>New Market Bairagi Purwa Tulsipur , Balrampur 271208</p>
</div>
<div class="address-group">
<i class="fa-3x text-red"></i>
<h2 class="text-red md-heading">Email</h2>
<p>khushbuyad123@gmail.com</p>
</div>
<div class="address-group">
<i class="fa-3x text-red"></i>
<h2 class="text-red md-heading">Call</h2>
<p>+91_9621196285</p>
</div>
<img src="sim.jpg" alt="company">
</div>
<form action="" class="form">
<h1 class="lg-heading text-black">Contact Us</h1>
<p class="text-grey">Let us Know your question, suggestion and concern by fitting out here.</p>
<div class="form-group">
<label for="Username">Name</label>
<input type="text" name="" id="Username" required> </div>
<div class="form-group">
<label for="email">Email</label>
<input type="text" name="" id="email" required>
</div>
<div class="form-group">
<label for="contact">Contact No</label>
<input type="number" name="" id="contact" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea name="" id="message" required></textarea>
</div>
<button type="submit" class="form-btn">Submit</button>
</form>
</div>
</div>
</section>
<footer class="footer">
<div class="social-media-links">
<h2>Khushbu Yadav</h2>
<p>Travel @2022 ;copy</p>
</div>
</footer>
</body>
</html>