-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (125 loc) · 2.93 KB
/
index.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="et">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elamused Looduses</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #2c3e50;
}
header {
background-color: rgb(28, 82, 0);
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
header p {
margin: 0;
font-size: 1.2em;
}
nav {
background-color: #346903;
display: flex;
justify-content: center;
padding: 10px 0;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 1em;
}
nav a:hover {
text-decoration: underline;
}
.hero {
background-image: url('https://visitestonia.com/content-images/638657/eesti-loodus-eriilmeline-puhas-ja-loogastav-et-001-visit-estonia.jpg');
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 100px 20px;
}
.hero h2 {
font-size: 2.5em;
}
.hero p {
font-size: 1.5em;
}
.content {
padding: 40px 20px;
}
.iframe-wrapper {
max-width: 1400px;
padding-left: 16px;
padding-right: 16px;
margin: 0 auto;
}
.content h2 {
font-size: 2em;
margin-bottom: 20px;
}
.content p {
font-size: 1.2em;
line-height: 1.6;
}
footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 20px;
}
iframe {
width: 100%; /* Kasutab alati kogu saadaoleva laiuse */
height: 800px; /* Võid muuta kõrgust vastavalt vajadusele */
}
</style>
</head>
<body>
<header>
<h1>Elamused Looduses</h1>
<p>Majutus ja tegevused imelises looduses</p>
</header>
<nav>
<a href="#majutus">Majutus</a>
<a href="#tegevused">Tegevused</a>
<a href="#broneeri">Broneeri</a>
<a href="#kontakt">Kontakt</a>
</nav>
<section class="hero">
<h2>Tule ja avasta Eesti looduse ilu!</h2>
<p>Puhkus, mida sa väärid.</p>
</section>
<div class="content">
<section id="majutus">
<h2>Majutus</h2>
<p>Pakume hubaseid majutusvõimalusi, mis on loodusele lähedal ja pakuvad täielikku rahu ning
vaikust.</p>
</section>
<section id="tegevused">
<h2>Tegevused</h2>
<p>Matkad, kanuuretked, lõkkeõhtud ja palju muud! Meie pakutavad tegevused sobivad nii peredele
kui ka seiklejatele.</p>
</section>
<section id="broneeri">
<h2>Broneeri</h2>
<div style="max-width: 1400px; margin: 0 auto;">
<iframe
src="https://live.touringery.ee/booking-widget?token=df8c6910-65f2-455d-9430-fb4579d76f46"></iframe>
</div>
</section>
</div>
<footer>
<p>© 2024 Elamused Looduses. Kõik õigused kaitstud.</p>
</footer>
</body>
</html>