-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
75 lines (71 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="welcome to the best hotel in Awka Anambra state Nigeria">
<meta name="keywords" content="Hotle, Awka Hotels, Hotels in Anambra, Anambra, Awka">
<script src="https://kit.fontawesome.com/6109df2f64.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" media="screen and (max-width: 768px)" href="css/mobile.css">
<title>Hotel Awka | Contact</title>
</head>
<body>
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"> <a href="index.html">H-AW</a></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a class="current" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section id="contact-form" class="py-3">
<div class="container">
<h1 class="l-heading"><span class="text-primary">Contact</span> Us</h1>
<p>Please Fill Out The Form Below To Contact Us</p>
<form action="process.php">
<div class="form-group">
<label for="name ">Name</label>
<input id="name" type="text" name="name"></input>
</div>
<div class="form-group">
<label for="email ">Email</label>
<input id="email" type="email" email="email"></input>
</div>
<div class="form-group">
<label for="message ">Message</label>
<textarea id="message" type="text" message="message"></textarea>
</div>
<button class="btn" type="submit">Submit</button>
</form>
</div>
</section>
<section id="contact-info" class="bg-dark">
<div class="container">
<div class="box">
<i class="fas fa-hotel fa-3x"></i>
<h3>Location</h3>
<p>32 Abakaliki Street Awka, Anambra State.</p>
</div>
<div class="box">
<i class="fas fa-phone fa-3x"></i>
<h3>Phone Number</h3>
<p>(+234)8116758862</p>
<p>(+234)7089349206</p>
</div>
<div class="box">
<i class="fas fa-envelope fa-3x"></i>
<h3>Email</h3>
<p>[email protected]</p>
</div>
</div>
</section>
<footer id="main-footer">
<p>Hotel BT© 2020, All Right Reserved.</p>
</footer>
</body>
</html>