-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
439 lines (437 loc) · 16.2 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
<!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" />
<link rel="preconnect" href="https://fonts.bunny.net" />
<link
href="https://fonts.bunny.net/css?family=nanum-brush-script:400"
rel="stylesheet"
/>
<title>Ulhasa Kokorō - Shiatsu, Massage & Wellness</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,700,0,0"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Ma+Shan+Zheng&family=Mandali&family=Reem+Kufi:wght@400;500;600;700&family=Qwitcher+Grypen:wght@400;700&family=Nunito+Sans:ital,wght@0,400;0,700;1,400&family=Kolker+Brush&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="main.js" defer></script>
<script src="./js/language-helper.js" defer></script>
<script src="./js/burguer-menu.js" defer></script>
</head>
<body class="">
<a id="skip-to-main" href="#main-content">Skip to main content</a>
<section class="section-observable" data-sectionId="1">
<header class="flex">
<nav id="main-nav">
<ul class="flex">
<li>
<a
href="index.html"
class="nav-btn flex center"
data-page="navigation"
data-section="home"
>Home</a
>
</li>
<li>
<a
href="./index.html#whoAmI"
class="nav-btn flex center"
data-page="navigation"
data-section="about-me"
>About Me</a
>
</li>
<li>
<a
href="#shiatsu"
class="nav-btn flex center"
data-page="navigation"
data-section="shiatsu"
>Shiatsu</a
>
</li>
<li>
<a
href="#therapy"
class="nav-btn flex center"
data-page="navigation"
data-section="therapy"
>Therapy</a
>
</li>
<li id="li-subnav">
<a
href="#wellness"
class="nav-btn flex center"
data-page="navigation"
data-section="wellness"
>Wellness</a
>
</li>
<li>
<a
href="#contact"
class="nav-btn flex center"
data-page="navigation"
data-section="contact"
>Contact</a
>
</li>
</ul>
</nav>
<div id="languages">
<div class="lang section-text" data-language="en">EN</div>
<div class="lang section-text" data-language="es">ES</div>
</div>
<div id="burguer-menu-icon" class="burguer-menu-icon">
<div id="top" class="burguer-menu-line"></div>
<div id="mid" class="burguer-menu-line"></div>
<div id="bot" class="burguer-menu-line"></div>
</div>
</header>
</section>
<main id="main-content">
<img
src="./assets/imgs/ulhasakokoromaroon.png"
id="background-img"
alt="Logo Ulhasa Kokorō"
/>
<div id="to-top-btn" class="to-btn flex center">
<span class="material-symbols-outlined"> arrow_upward </span>
</div>
<div id="to-next-btn" class="to-btn flex center">
<span class="material-symbols-outlined"> arrow_downward </span>
</div>
<div class="landing-container flex center">
<img id="landing-img" src="././assets/imgs/loto-1920x1275.jpg" alt="" />
<div class="landing-content">
<h1 class="main-title" data-page="front-page" data-section="title">
Ulhasa Kokorō
</h1>
<h2
class="main-subtitle"
data-page="front-page"
data-section="subtitle"
>
Shiatsu, massage & wellness
</h2>
</div>
</div>
<div id="whoAmI-wrapper" class="section-wrapper">
<div class="section-background flex center" id="whoAmI-background">
<div class="section-background-content"></div>
</div>
<section id="whoAmI" class="flex section-observable" data-sectionId="2">
<div class="section-content flex">
<div class="card flex center">
<img
id="whoAmI-img"
src="./assets/imgs/SHIATSU-21.jpg"
class="section-img"
alt="Ulhasa giving a shiatsu session"
/>
<div class="card-text-container">
<h1
class="section-title"
data-page="home"
data-section="who-am-i"
data-value="title"
>
I'm ULHASA
</h1>
<p
class="section-text"
data-page="home"
data-section="who-am-i"
data-value="p1"
>
ULHASA in sanskrit means <em><strong>JOY</strong></em
>. <br />It's my spiritual name, my path. My life's
meaning!<br />
The <em><strong>JOY</strong></em> lights up my course,<br />
I walk with the light of <em><strong>JOY</strong></em
>.
</p>
<p
class="section-text"
data-page="home"
data-section="who-am-i"
data-value="p2"
>
I graduated in architecture, I always loved crafts and
handwork.<br />I became a massage therapist and I jumped into
the world of <strong>Shiatsu</strong>.
</p>
<a
class="keep-reading"
href="who-am-i.html"
data-page="home"
data-section="shared"
data-value="keep-reading"
>Keep reading...</a
>
</div>
</div>
</div>
</section>
</div>
<div class="bottom-sticky-wrapper">
<div
id="shiatsu-section-break"
class="section-break-background rocks-container"
>
<div class="rocks-top rocks-content">
<img
src="./assets/imgs/rocksUp.jpg"
alt="Rock balancing background top"
/>
</div>
<div class="rocks-bottom rocks-content">
<img
src="./assets/imgs/rocksDown.jpg"
alt="Rock balancing background bottom"
/>
</div>
<div class="rocks-bottom-white rocks-content"></div>
</div>
<div
class="section-break flex center section-observable"
data-sectionId="3"
>
<div id="shiatsu-card" class="section-break-card">
<blockquote cite="Tokujiro Namikoshi">
<p data-page="home" data-section="shiatsu-card" data-value="p1">
"The heart of <strong>SHIATSU</strong> is like a mother's love.
</p>
<p data-page="home" data-section="shiatsu-card" data-value="p2">
Pressure of the finger
</p>
<p data-page="home" data-section="shiatsu-card" data-value="p3">
causes the spring of life to flow."
</p>
<br />
<div class="card-footer flex">
<img
id="tokujiro-img"
src="./assets/imgs/Tokujiro1.jpg"
alt="Image of Tokujiro Namikoshi with his thumbs up."
/>
<p class="align-right signature"><em>Tokujiro Namikoshi</em></p>
</div>
</blockquote>
</div>
</div>
<div class="section-break-placeholder"></div>
<article>
<div class="section-wrapper">
<section
id="shiatsu"
class="flex section-observable"
data-sectionId="4"
>
<div class="section-content flex center">
<div class="card flex center">
<div class="card-text-container">
<img
id="shiatsu-kanji"
src="./assets/imgs/shiatsu kanji-small.png"
alt="Shiatsu kanji"
/>
<h1
class="section-title"
data-page="home"
data-section="shiatsu"
data-value="title"
>
SHIATSU
</h1>
<p
class="section-text"
data-page="home"
data-section="shiatsu"
data-value="p1"
>
In Japanese means finger pressure. It is a body therapy
created in Japan.
</p>
<p
class="section-text"
data-page="home"
data-section="shiatsu"
data-value="p2"
>
It uses hand and finger pressure, stretching and
mobilization to correct irregularities, to keep and
improve health and to relieve certain diseases —
activating the human body's autohealing capability.
</p>
<p
class="section-text"
data-page="home"
data-section="shiatsu"
data-value="p3"
>
It was <strong><em>Tokujiro Namikoshi</em></strong> who
elaborated a method for Shiatsu application teaching.
</p>
<a
class="keep-reading"
href="shiatsu.html"
data-page="home"
data-section="shared"
data-value="keep-reading"
>Keep reading...</a
>
</div>
</div>
</div>
</section>
<section
id="therapy"
class="flex section-observable"
data-sectionId="5"
>
<div class="section-content flex center">
<div class="card flex center">
<div class="card-text-container">
<h1
class="section-title"
data-page="home"
data-section="therapy"
data-value="title"
>
THERAPY
</h1>
<p
class="section-text"
data-page="home"
data-section="therapy"
data-value="p1"
>
Tensions are our guests, we invited them.
</p>
<p
class="section-text"
data-page="home"
data-section="therapy"
data-value="p2"
>
Relaxation is our nature. We don't have to invite it.
</p>
<p
class="section-text"
data-page="home"
data-section="therapy"
data-value="p3"
>
You don't have to relax - you just need to stop inviting
tensions and relaxation will happen on its own. In your
own being, in every fiber, in every cell of your body
there will be relaxation. This relaxation is the beggining
of meditation.
</p>
<a
class="keep-reading"
href="therapy.html"
data-page="home"
data-section="shared"
data-value="keep-reading"
>Keep reading...</a
>
</div>
</div>
</div>
</section>
<section
id="wellness"
class="flex section-observable"
data-sectionId="6"
>
<div class="section-content flex center">
<div class="card flex center">
<div class="card-text-container">
<h1 class="section-title">WELLNESS</h1>
<p class="section-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Nisi, est quis consequuntur iusto voluptatum quam vel
optio officia commodi magnam sunt, quas excepturi, ullam a
doloribus rerum? Corporis ea voluptates distinctio dolorum
ipsa, facere libero magnam, ex adipisci aperiam
consequatur quae! Qui beatae tenetur quaerat! Laboriosam
voluptatibus exercitationem ratione et!
</p>
<h2 id="meditation" class="section-subtitle">Meditation</h2>
<p class="section-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Doloribus est in quisquam molestiae nihil voluptas, enim
ab quam atque? Praesentium!
</p>
<h2 id="gastronomy" class="section-subtitle">Gastronomy</h2>
<p class="section-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Doloribus est in quisquam molestiae nihil voluptas, enim
ab quam atque? Praesentium!
</p>
<br />
<a
class="keep-reading"
href="wellness.html"
data-page="home"
data-section="shared"
data-value="keep-reading"
>Keep reading...</a
>
</div>
</div>
</div>
</section>
</div>
</article>
</div>
<div class="section-wrapper">
<div class="bottom-wrapper-ending"></div>
<div
id="contact-background"
class="section-background flex center"
></div>
<section id="contact-section" class="flex center">
<div class="section-content flex center">
<div
id="contact"
class="card flex center section-observable"
data-sectionId="7"
>
<div class="card-text-container">
<h1
class="section-title"
data-page="home"
data-section="contact"
data-value="title"
>
Contact
</h1>
<p class="section-text">Ulhasa</p>
<p class="section-text">+34 657 571 281</p>
<p class="section-text">devaulhasa@hotmail.com</p>
</div>
</div>
<!-- TODO -->
<!-- añadir foto Ulhasa contactos? que se vea logo! -->
<!-- foto ulhasa futón (shiatsu) -->
<!-- transparencia portada whoami -->
<!-- menu burguer -->
</div>
</section>
</div>
</main>
<footer></footer>
</body>
</html>