-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
78 lines (72 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Mumbai hotel/motel for a comfortable stay.">
<title>Contact</title>
<link href="./css/style.css" rel="stylesheet" type="text/css">
<script src="https://kit.fontawesome.com/b14ccdb9da.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/mobile.css" media="screen and (max-width:768px)">
</head>
<body>
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"> <a href="index.html"> One Hotel</a></h1>
<ul>
<li><a href="index.html">HOME</a></li>
<li ><a href="about.html">ABOUT</a></li class="">
<li class="current"><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</nav>
</header>
<section class="contact-form">
<div class="container">
<h1><span class="text-primary">Contact </span>Us</h1>
<p>Please fill out the form to contact us</p>
<form action="process.php">
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div class="form-group">
<label for="message">Message</label>
<input type="text-area" name="message" id="message">
</div>
<input type="submit" class="btn">
</form>
</div>
</section>
<section class="contact-info bg-dark">
<div class="layer">
<div class="container">
<div class="box">
<i class="fas fa-hotel fa-3x"></i>
<h3>Location</h3>
<p>9 street, sector 1, Mumbai</p>
</div>
<div class="box">
<i class="fas fa-phone fa-3x"></i>
<h3>Phone Number</h3>
<p>22221111</p>
</div>
<div class="box">
<i class="fas fa-envelope fa-3x"></i>
<h3>Email Address</h3>
<p>[email protected]</p>
</div>
</div>
</div>
</section>
<footer class="footer-section">
<p>One Hotel © 2019, All RIghts Reserved</p>
</footer>
</body>
</html>