-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (56 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GoYoga</title>
<link rel="icon" type="image/png" href="assets/logo.png">
<link rel="stylesheet" href="styleinst.css">
<style>@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');
</style>
</head>
<body>
<header>
<div class="nav-hero">
<div class="logo">
<img src="assets/logo.png" alt="GoYoga Logo">
<h1>GoYoga</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<h2>“Yoga is not about touching your toes, it's about what you learn on the way down.” ― Jigar Gor</h2>
<button class="cta-button"
title="Visit the art of living Blog On the holistic Power of Yoga"
onclick="window.open('https://www.artofliving.org/in-en/yoga/yoga-sequences-for/holistic-power-of-yoga', '_blank')"
target="_blank">
Discover the Power of Yoga</button>
</section>
<section class="about">
<h2>Go Yoga</h2>
<p>Welcome to Go Yoga - Your Yoga Oasis</p>
<p>Where the mind, body, and soul unite in perfect harmony.</p>
</section>
<section class="content">
<h2>Unlock the Power of Yoga</h2>
<p>Discover the transformative benefits of yoga, scientifically proven to alleviate symptoms of various medical problems.</p>
<p>Did you know? Yoga can significantly improve cardiovascular health, lower high blood pressure, and reduce stress levels.</p>
<p>But yoga is more than just physical poses. It's a holistic practice that encompasses mindfulness, breathing techniques, and spiritual growth.</p>
<button class="cta-button"
title="Go to the Instructions"
onclick="window.location.href='instructions.html'">
Start Your Yoga Journey</button>
</section>
<footer>
<p> 2024 GoYoga - Embrace the Journey, Embrace the Yoga Lifestyle.</p>
</footer>
</body>
</html>