-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudio.html
More file actions
115 lines (115 loc) · 4.95 KB
/
Copy pathstudio.html
File metadata and controls
115 lines (115 loc) · 4.95 KB
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
<!DOCTYPE html>
<html>
<head>
<title>finca la suerte - rent a studio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#accommodations">Accommodations</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#history">History</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="index.html#getthere">How to get there</a></li>
<!--li><a href="index.html#area">Area</a></li-->
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<img id="menu-icon" src="./images/menu-icon.png">
<menu id="menubox">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#accommodations">Accommodations</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#history">History</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="index.html#getthere">How to get there</a></li>
<!--li><a href="index.html#area">Area</a></li-->
<li><a href="index.html#contact">Contact</a></li>
</menu>
</header>
<section id="title">
<img id="title-img" src="./images/studio/title.jpg">
<h1>Rent a Studio</h1>
</section>
<section id="description">
<h2>Description</h2>
<p>The studio has its own kitchen, bathroom, and a big terrace with a couch and a roof.
</p>
</section>
<section id="prices">
<h2>Prices for 2026</h2>
<table>
<thead>
<th></th>
<th>
<h3>High Season</h3>
</th>
<th>
<h3>Low Season</h3>
</th>
</thead>
<tbody>
<tr>
<td><p></p></td>
<td><p><p>January - April <br> November - December</p></p></td>
<td><p><p>May - October</p></p></td>
</tr>
<tr>
<td><p>1 - 2 people</p></td>
<td><p>45 Euro</p></td>
<td><p>35 Euro</p></td>
</tr>
<tr>
<td><p>additional person <br>
(max. 4 people)</p></td>
<td><p>10 Euro</p></td>
<td><p>10 Euro</p></td>
</tr>
<tr>
<td><p>children under 12 years</p></td>
<td><p>free</p></td>
<td><p>free</p></td>
</tr>
<tr>
<td><p>dog / cat</p></td>
<td><p>3 Euro</p></td>
<td><p>3 Euro</p></td>
</tr>
</tbody>
</table>
<p>For booking and questions, please contact me:</p>
<p class="biggertext">xebicha76@gmail.com</p>
<!--p>or</p>
<a href="" target="_blank">
<p class="biggertext">book on airbnb</p>
</a-->
</section>
<section id="photos">
<h2>Photos</h2>
<div id="photoshow">
<img id="shownphoto" src="./images/studio/1.jpg">
<button id="previousphoto"></button>
<button id="nextphoto"></button>
<button id="closebutton"></button>
</div>
<div id="photoarea">
<a href="#photos"><img id="studio1" class="photo" src="./images/studio/1.jpg"></a>
<a href="#photos"><img id="studio2" class="photo" src="./images/studio/2.jpg"></a>
<a href="#photos"><img id="studio3" class="photo" src="./images/studio/3.jpg"></a>
<a href="#photos"><img id="studio4" class="photo" src="./images/studio/4.jpg"></a>
<a href="#photos"><img id="studio5" class="photo" src="./images/studio/5.jpg"></a>
<a href="#photos"><img id="studio6" class="photo" src="./images/studio/6.jpg"></a>
<a href="#photos"><img id="studio7" class="photo" src="./images/studio/7.jpg"></a>
<a href="#photos"><img id="studio8" class="photo" src="./images/studio/8.jpg"></a>
</div>
</section>
<script src="galleryscript.js"></script>
<script src="menuscript.js"></script>
<footer>
<a href="/sitemap.html">Sitemap</a>
</footer>
</body>
</html>