-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
85 lines (83 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<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=7" />
<meta
name="description"
content="Hotel BT is the most rated hotel in town with 4.5 star rating"
/>
<meta
name="keywords"
content="Hospitality, Hotel, Inn, Bar, Restaurant, Pool, City, Games"
/>
<title>Contact</title>
<script
src="https://kit.fontawesome.com/5a1d47c6c2.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<div class="container">
<h1>HBT</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#" class="active">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div class="clr"></div>
<!-- Main content -->
<section id="contact">
<div class="container">
<h1><strong>Contact</strong> Us</h1>
<form action="#">
<div class="form-group">
<label for="name">Name</label>
<input type="name" 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="msg">Message</label>
<textarea name="message" id="msg"></textarea>
</div>
<button type="submit" class="btn">Submit</button>
</form>
</div>
</section>
<section id="contact-info">
<div class="box">
<i class="fa-solid fa-hotel"></i>
<h3>Location</h3>
<p>Dawaki Pantaka, Abuja, Nigeria.</p>
</div>
<div class="box">
<i class="fa-solid fa-phone"></i>
<h3>Phone Number</h3>
<p>(081)-651-89702</p>
<br>
</div>
<div class="box">
<i class="fa-solid fa-envelope"></i>
<h3>Email Address</h3>
<p>[email protected]</p>
<br>
</div>
</section>
<div class="clr"></div>
<footer>
<p>Hotel BT ©. All Rights Reserved</p>
</footer>
</body>
</html>
</html>