-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuttanasana.html
100 lines (91 loc) · 3.93 KB
/
uttanasana.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Attractive Web Page</title>
<style>
body {
background-color: #F6CEFC; /* Updated background color */
margin: 0;
font-family: Arial, sans-serif;
}
.container {
background-color: #301934;
color: #fff;
padding: 20px;
}
.black-box {
background-color: #301934; /* Updated heading background color */
color: white;
padding: 20px;
border-radius: 0 0 8px 8px; /* Rounded corners only at the bottom */
width: 100%; /* Cover entire horizontal width */
}
.back-button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
}
h1 {
margin: 0;
}
p {
line-height: 1.6;
}
img {
max-width: 100%;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<div class="black-box">
<h1>Uttanasana</h1>
<button class="back-button" onclick="goBack()">Back</button>
</div>
</div>
<div>
<img src="https://rajyogarishikesh.com/images/uttanasana-standing-forward-bend.jpg" alt="Uttanasana">
</div>
<p>
The term Uttanasana has been derived from three words - 'Ut, which means 'intense', 'Tan, which means to stretch and extend, and 'asana', which means posture. In short, it is yoga posture that involves intense stretching of the body muscles. One of the postures of hatha yoga, Uttanasana enjoys immense popularity in the present times, one of the reasons why so many of its variations have been evolved. In this asana, you are required to start from the Tadasana pose and then hinge forward, bending at the hips and letting the head hang. Apart from stretching the legs and spine, Uttanasana is believed to calm down the mind as well as the body.
<br>
Instructions
<br>
First of all, you need to stand in the Tadasana posture (mountain pose).
Now, start inhaling and raise your arms, taking them over your head.
As you exhale, start bending your hips.
Bring your arms forward and then take them down, along with the torso, so they are touching the floor.
Now, take your hands behind your legs and join them together.
Remain in the position for 7-8 breaths.
Now, bring your hands in the front and start twisting your torso upwards, pulling yourself.
Keep your head hanging down till you are completely straight.
Repeat the procedure 4-5 times.
<br>
BENEFITS
<br>
Uttanasana helps provide a complete stretching exercise to the entire back side of your body.
It has been observed that this asana helps rejuvenate the spinal nerves of a person and also tones the kidneys, liver, and spleen.
Those suffering from depression would find Uttanasana to be quite helpful, as it helps make the mind peaceful and calm.
Practicing this asana helps improve the flexibility of various body parts, including the spine, hips, sciatic nerves, tendons and ligaments of legs.
By soothing the brain cells, Uttanasana helps revitalize and invigorate the nervous system.
This asana has proved to be beneficial for people suffering from anxiety. It also improves eyesight and hearing.
Uttanasana improves blood circulation in the legs and also increases the suppleness of the hamstrings.
This asana provides nourishment to the facial skin, scalp, and even the hair roots.
</p>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>