generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
family.html
126 lines (119 loc) · 5.76 KB
/
family.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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">
<meta name="description"
content="Beach Hotel located in the Pacific coast of Leon, Nicaragua in a village called Las Peñitas">
<meta name="keywords" content="Beach Hotel Pacific Leon Nicaragua Las Peñitas">
<title>Aáki Hotel</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="mainpage-container">
<header class="style-header">
<a href="index.html">
<div class="logo-aaki"></div>
</a>
<nav class="menu">
<ul class="main-list">
<li><a href="index.html">Home</a></li>
<li><a class="active" href="#">Rooms</a>
<ul class="dropdown">
<li><a href="seaview1.html">Seaview Room 1</a> </li>
<li><a href="seaview2.html">Seaview Room 2</a> </li>
<li><a href="terrace.html">Terrace Room</a> </li>
<li><a href="family.html">Family Room</a> </li>
<li><a href="balconyroom.html">Balcony Room</a></li>
</ul>
</li>
<li><a href="eat-drink.html">Eat & Drink</a></li>
<li class="icons list">
<span>
<a href="https://www.instagram.com/aakihotel/" target="_blank"><i
class="fab fa-instagram"></i></a></span> <span>
<a href="https://www.facebook.com/aakihotel/" target="_blank"><i
class="fab fa-facebook-square"></i></a></span>
<span><a href="tel:50589881867"><i class="fab fa-whatsapp"></i></a></span>
<span>
<a href="https://goo.gl/maps/NnR9zKbF7Ps8i8XLA" target="_blank"><i
class="fas fa-map-marker-alt"></i></a>
</span>
<span id="email"><a href="mailto:hola@aakihotel.com">hola@aakihotel.com</a></span>
</li>
</ul>
</nav>
</header>
<section class="photos-1">
<h3 id="style">Family Room</h3>
<a href="book-me.html" class="book-me style-button">BOOK ME !</a>
<div class="photos-terrace">
<img src="./assets/images/familyroom-2.jpeg" alt="Family Room two Beds">
<img src="./assets/images/familyroom-1.jpeg" alt="Family Room">
</div>
</section>
<section class="amenities-1">
<div class="list-left">
<div class="left-info">
<h3>General Info <i class="fas fa-info"></i></h3>
<ul>
<li>Bar & Restaurant √</li>
<li>Clothes rack √</li>
<li>Beach towels √</li>
<li>Private entrance √ </li>
<li>Pets are not allowed √</li>
<li>Breakfast included √</li>
<li>Tile/Marble floor √</li>
<li>Facilities for disabled guests √</li>
<li>Laundry service √</li>
</ul>
</div>
<div class="parking">
<h3><i class="fas fa-parking"></i> Free Parking <span>
available on site (reservation is not needed)
</span></h3>
</div>
</div>
<div class="list-right">
<div>
<h3>Room Amenities <i class="fas fa-bed"></i></h3>
<ul>
<li>Mosquito net √</li>
<li>Air conditioning √</li>
<li>TV-Cable channels √</li>
<li>Fan √</li>
<li>Family rooms √</li>
<li>Private bathroom √</li>
<li>Non-smoking rooms √</li>
<li>Shampoo, Shower Gel and Conditioner √</li>
<li>Socket near the bed √</li>
</ul>
</div>
<div class="wifi-info">
<h3><i class="fas fa-wifi"></i> WiFi <span> is available in all areas and is free of charge</span>
</h3>
</div>
</div>
</section>
<footer>
<section class="footer-icons">
<span class="f-icon">
<a href="https://www.instagram.com/aakihotel/" target="_blank"><i
class="fab fa-instagram"></i></a></span>
<span class="f-icon">
<a href="https://www.facebook.com/aakihotel/" target="_blank"><i
class="fab fa-facebook-square"></i></a></span>
<span class="f-icon">
<a href="https://goo.gl/maps/NnR9zKbF7Ps8i8XLA" target="_blank"><i
class="fas fa-map-marker-alt"></i></a>
</span>
<span class="f-icon"><a href="tel:50589881867"><i class="fab fa-whatsapp"></i></a></span>
<span id="contact"><a href="mailto:hola@aakihotel.com">hola@aakihotel.com</a></span>
</section>
<section class="lower"><p>© 2021 Aáki Hotel</p></section>
</footer>
</div>
<script src="https://kit.fontawesome.com/ced07efa37.js" crossorigin="anonymous"></script>
</body>
</html>