-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.php
118 lines (114 loc) · 4.37 KB
/
services.php
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="low budget hostel">
<meta name="description" content="low budget hostel rent">
<meta name="description" content="hostel">
<title>Services</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Hostel Management</span></h1>
</div>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li ><a href="about.php">About</a></li>
<li class="current"><a href="services.php">Services</a></li>
<li><a href="contact.php">Contact US</a></li>
<li><a href="login.php">login</a></li>
<li><a href="register.php">Register</a></li>
</ul>
</nav>
</div>
</header>
<section id="newsletter">
<div class="container">
<h1>Subscribe to our newsletter</h1>
<form>
<input type="email" placeholder="Enter Email..." name="" value="">
<button type="submit" class="button1">Subscribe</button>
</form>
</div>
</section>
<section id="main">
<div class="container">
<article id="maincol">
<h1 class="pagetitle">Services</h1>
<ul id="services">
<li>
<h3>High Budget Room</h3>
<p>There are several facilities for the backpackers inside Golpata B & B hostel comprising hostel amenities and rooms’ amenities. If you spend a moment just talking about hostel amenities, these are as under:<br>
<br>Common kitchen where you can do your culinary experiments
<br>Common lounge with television and refrigerator
<br>Free Wi-Fi service throughout the hostel
<br>Free parking service and bicycle hire is also available
<br>Cafeteria available
<br>Shared and separate toilets with free towels
<br>24 hours security and separate lockers in each room
<br>Air-conditioned rooms
<br>Power plugs next to beds
<br>24 hours front desk service</p>
<p>Pricing: 12000tk-15000tk per month</p>
</li>
<li>
<h3>Mid Budget Room</h3>
<p>There are several facilities for the backpackers inside Golpata B & B hostel comprising hostel amenities and rooms’ amenities. If you spend a moment just talking about hostel amenities, these are as under:<br>
<br>Common kitchen where you can do your culinary experiments
<br>Common lounge with television and refrigerator
<br>Free Wi-Fi service throughout the hostel
<br>Free parking service and bicycle hire is also available
<br>Cafeteria available
<br>Shared and separate toilets with free towels
<br>24 hours security and separate lockers in each room
<br>Power plugs next to beds
<br>24 hours front desk service</p>
<p>Pricing:8000tk-10000tk per month</p>
</li>
<li>
<h3>Low Budget Room</h3>
<p>There are several facilities for the backpackers inside Golpata B & B hostel comprising hostel amenities and rooms’ amenities. If you spend a moment just talking about hostel amenities, these are as under:<br>
<br>Common kitchen where you can do your culinary experiments
<br>Common lounge with television and refrigerator
<br>Free Wi-Fi service throughout the hostel
<br>Free parking service and bicycle hire is also available
<br>Shared and separate toilets with free towels
<br>24 hours security and separate lockers in each room
<br>Power plugs next to beds
<br>24 hours front desk service</p>
<p>Pricing:6000tk-8000tk per month</p>
</li>
</ul>
</article>
<aside id="sidebar">
<div class="dark">
<h3>Get A Quote</h3>
<form class="quote">
<div>
<label>Name</label><br>
<input type="text" placeholder="Name" name="" value="">
</div>
<div>
<label>Email</label><br>
<input type="email" placeholder="Email" name="" value="">
</div>
<div>
<label>Message</label><br>
<input type="text" placeholder="Message" name="" value="">
</div><br>
<button type="submit" class="button1">Send</button>
</form>
</div>
</aside>
</div>
</section>
<footer>
<p>Hostel Management, Copyright © 2020</p>
</footer>
</body>
</html>