-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
78 lines (78 loc) · 2.33 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>
<head>
<meta charset="UTF-8">
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--Main css file-->
<link rel="stylesheet" href="./assets/css/main.css">
<!--Header css-->
<link rel="stylesheet" href="./assets/css/header.css">
<!--Font awesome icons-->
<link rel="stylesheet" href="./assets/css/all.css">
<!--Contact css-->
<link type="text/css" rel="stylesheet" href="./assets/css/contact.css">
</head>
<body>
<!--Header section-->
<header>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fa fa-bars"></i>
</label>
<label class="logo"><a href="index.html"><img src="./assets/img/furen.svg"></a></label>
<ul>
<li><a href="facilities.html">Offers</a></li>
<li><a href="rooms.html">Rooms</a></li>
<li><a href="index.html#dining">Dining</a></li>
<li><a href="index.html#conference">Conference</a></li>
<li><a href="contact.html">Contact</a></li>
<button class="headbutton">Book now</button>
</ul>
</nav>
</header>
<!--Header ends-->
<!--Contact section-->
<div>
<img class="contactImg"/>
<div class="position">
<div class="top">
<h2>CONTACT US</h2>
<h4>Get in touch</h4>
</div>
<div class="row">
<div class="column">
<h2>ADDRESS</h2>
<h4>5 Lekki Lake PO BOX 1988, Lagos</h4>
</div>
<div class="column">
<h2>EMAIL</h2>
<h4>[email protected]</h4>
</div>
<div class="column">
<h2>TELEPHONE</h2>
<h4>+2347039001923</h4>
</div>
</div>
</div>
</div>
<!--Contact section ends-->
<!--foooter-->
<footer>
<div class="footer">
<div class="footer-row">
<img class="footerImg" src="./assets/img/furen.svg" alt="FUREN"/>
<a href="facilities.html">Offers</a>
<a href="rooms.html">Rooms</a>
<a href="index.html#dining">Dining</a>
<a href="index.html#conference">Conferences</a>
<a href="contact.html">Contacts</a>
<button class="footer-button">Book Now</button>
</div>
</div>
</footer>
<!--footer ends-->
</body>
</html>