forked from I-RoshanKumar/Beginner_Hactoberfest2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
83 lines (72 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>travel website</title>
</head>
<body>
<nav class="navbar bg-dark">
<div class="container">
<h1 class="logo">TA</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">
<div class="company-about">
<i class="fas fa-map-marked-alt fa-2x "></i>
<h2 class="md-heading text-gray">location</h2>
<p>#2227 janakpuri colony,city-name,town-name</p>
</div>
<div class="company-about">
<i class="far fa-envelope fa-3x"></i>
<h2 class="md-heading text-gray">Email</h2>
<p>[email protected]</p>
</div>
<div class="company-about">
<i class="fas fa-phone-square-alt fa-3x "></i>
<h2 class="md-heading text-gray">call</h2>
<p>+91 78193901839</p>
</div>
<img src="./img/company-img.jpg" alt="company image">
</div>
<div class="form-section">
<form action="" class="form-about">
<h2 class="lg-heading text-red">
contact us
</h2>
<p class="contact-para">let us know your suggestion,question and concern by filling out the contact form below</p>
<div class="form-part">
<label for="username">username</label>
<input type="text" id="username" required>
</div>
<div class="form-part">
<label for="Email">Email</label>
<input type="text" id="Email" required>
</div>
<div class="form-part">
<label for="phone">Phone</label>
<input type="text" id="phone" required>
</div>
<div class="form-part">
<label for="message">message</label>
<textarea name="" id="message" cols="30" rows="10"></textarea>
</div>
<button type="submit" class="form-btn md-heading text-red">submit</button>
</form>
</div>
</div>
</div>
</section>
</body>
</html>