-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyogaclass.html
92 lines (89 loc) · 3.05 KB
/
yogaclass.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
<!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">
<title>Yoga Class</title>
<style>
.box{
background-color: #37ecba;
padding: 15px;
border: white;
}
body{
text-align: center;
margin-left: auto ;
margin-right: auto;
width: 40%;
display: block;
background-color:whitesmoke;
border: 2px solid white;
}
button{
font-size: 20px;
background-color:black;
color: white;
margin: 10px;
padding: 20px;
cursor: pointer;
box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
transition: all 200ms ease;
}
button:hover{
color: wheat;
}
h1,h2{
text-decoration: underline;
color: blueviolet;
}
h3{
font-size: 15px;
}
p{
font-size: 30px;
color: black;
text-shadow: 10px;
text-decoration: underline double;
}
</style>
</head>
<body>
<div class="box">
<p>Meditation And Yoga</p>
<h1>To a Mind that is still</h1>
<h1>The whole Universe surrenders</h1>
<img src="https://i0.wp.com/www.mindful.org/content/uploads/how-to-meditate.jpg?resize=1024%2C640&ssl=1" width=300px;>
<h3 style="color: white;">
<b><u>Meditation and Yoga</u></b>, which is the practice of focused concentration, bringing yourself back to the moment over and over again,
actually addresses stress, whether positive or negative. Doing meditation daily for 30 Minutes can help you release many chronic mind diseases
such as stress ,depression, brain disorders. Moreover it has a great impact on your physical health. For a software developer ,
computer science engineers and tech workers like us yoga is a must to do thing. It can help you in backpain ,neckpain, eyepain.
Sitting for long hours can cause curved spinal cord, bent bones.
<br>
<br>
Thatswhy we are offering you classes for Yoga and meditaion. Our coaches are well educated and well-certified. They have done diploma
courses in yoga and meditation.
<br>
<a href="https://en.wikipedia.org/wiki/Meditation">
Read more
</a>
</h3>
<h3>
<button>
BOOK FREE DEMO CLASS
</button>
</h3>
<script>
function temp(){
let name = prompt("What is your name");
let email = prompt("What is your email");
let p=document.querySelector("p");
p.innerHTML="Hi,"+name+"! Thanks for your interest, We will sent you the timings of the classes via email";
}
let changebutton=document.querySelector("button");
changebutton.addEventListener("click",temp);
</script>
</div>
</body>
</html>