-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
78 lines (50 loc) · 2.27 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./bootstrap-4.6.0-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./bootstrap-social/bootstrap-social.css">
<link rel="stylesheet" href="../fontawesome/css/fontawesome.min.css">
<link rel="stylesheet" href="./css/hotel.css">
<title>Contact Us</title>
</head>
<body>
<nav>
<div class="navbar-section dark-bg">
<div><h2><a href="./index.html" class="white-text nav-logo">HBT</a></h2></div>
<div class="nav">
<ul>
<li class="navbar-navigation"><a class="white-text text-align-center" href="./index.html">Home</a></li>
<li class="navbar-navigation"><a class="white-text text-align-center" href="./about.html">About</a></li>
<li class="navbar-navigation"><a class="text-align-center activee" href="./contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<section class="contact-box">
<div class="contact-heading">
<h2><span class="orange-text">Contact</span> Us</h2>
</div>
<div class="form-area">
<p class="bold-text">Please fill out the form below to contact us</p>
<form action="">
<label for="" class="form-label bold-text">Name</label>
<input type="text" class="form-input-area">
<label for="" class="form-label bold-text">Email</label>
<input type="text" class="form-input-area">
<label for="" class="form-label bold-text">Message</label>
<textarea name="" id="" cols="149" rows="7"></textarea>
<div><input type="button" value="Submit" id="submit-button"></div>
</form>
</div>
</section>
<!-- add the section before the footer -->
<footer class="about-footer-box dark-bg">
<p class="about-footer-text white-text bold-text">Hotel BT © 2019, All Rights Reserved</p>
</footer>
<script src="./fontawesome/js/all.js"></script>
<script src="./js/main.js"></script>
</body>
</html>