-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
87 lines (75 loc) · 3.24 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
<!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/12a9473fd9.js" crossorigin="anonymous"></script>
<title>Travel Website |Welcome</title>
</head>
<body>
<nav class="navbar bg-dark">
<div class="container">
<h1 class="logo lg-heading">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>silicon valley.</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>skbakolia2002@gmail.com</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</h2>
<p>+9100000001</p>
</div>
<img src="./Img/company-img.jpg" alt="Company-image">
</div>
<form action="" class="form">
<h1 class="lg-heading">Contact Us</h1>
<p class="text-gray">Let us know your question and welcom to scrollme.com, tell your concern.</p>
<div class="form-group">
<label for="username">Username</label>
<input type="text" name="" id="username">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="text" name="" id="email">
</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"></textarea>
</div>
<button type="submit" class="form-btn">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-instagram fa-4x"></i>
<i class="fab fa-twitter fa-4x"></i>
</div>
<p>World Travel ©, 2020, All Rights Reserved</p>
</footer>
</body>
</html>