Created
May 19, 2023 11:22
-
-
Save BijalKibliwala/a5143fe792f45763ca41cdca0987485d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
h1 { | |
text-align: center; | |
color: brown; | |
} | |
h2 { | |
text-align: center; | |
color: rgb(42, 110, 165); | |
} | |
h3 { | |
text-align: center; | |
color: darkgreen; | |
border-radius: 10px; | |
border: 1px solid brown; | |
padding: 10px; | |
} | |
img { | |
border-radius: 10px; | |
width: 100%; | |
} | |
h4 { | |
color: coral; | |
font-size: medium; | |
text-align: center; | |
} | |
button { | |
width: 100%; | |
background-color: bisque; | |
font-size: medium; | |
font-weight: bold; | |
padding: 10px; | |
border: none; | |
border-radius: 25px; | |
margin: 20px; | |
} | |
footer { | |
text-align: center; | |
font-weight: bold; | |
} | |
</style> | |
</head> | |
<body> | |
<h1> | |
❤Bijal Kibliwala❤ | |
</h1> | |
<h2> | |
💢This is Bijal Kibliwala's website💢 | |
</h2> | |
<h3> | |
Join us for a transformative 200 Hour Yoga Teacher Training | |
</h3> | |
<h4> | |
Learn the art of teaching yoga, deepen your practice and find your unique voice right here in the heart of nature and open sky | |
</h4> | |
<p> | |
East meets West in a creative fusion of ancient science, ageless wisdom and contemporary evolution of yogic | |
philosophy and practice. Our internationally accredited yoga teacher training program will provide you with the | |
credentials necessary to teach all over the world. Learn the art of teaching yoga while diving deeper into the | |
wealth of yogic teachings and philosophy. Set in the tropical and spiritual surroundings of the beautiful and | |
magical island of Bali, Indonesia, a yogic paradise. Take the next step in your Yoga journey and join us for a | |
life changing experience. | |
</p> | |
<img src="https://static01.nyt.com/images/2018/11/21/autossell/00sl-yogaguide3a/merlin_147050583_34b7d39d-b496-4c4d-8d4c-3e83570c90ef-jumbo.jpg" | |
alt="" width="800" /> | |
<br> | |
<h3> | |
What You Need | |
</h3> | |
<p> | |
You don’t need anything but yourself. If you have a yoga mat, that’s great but not necessary. A towel works, | |
too, or you can just sit on the floor. Find a comfortable spot where you can be alone and uninterrupted for only | |
five minutes. Depending on how your body feels, you may want to use a yoga block, blanket or meditation cushion | |
to place underneath your body to support your body in a comfortable seated position. | |
</p> | |
<br> | |
<a | |
href="https://www.nytimes.com/guides/well/yoga-stress?mtrref=www.nytimes.com&gwh=6272C300C74CAA38F2447886ACFED158&gwt=regi&assetType=REGIWALL&redirect=true"> | |
Lear more here | |
</a> | |
<button> | |
Go to yoga class | |
</button> | |
<footer> | |
Coded by 👧 | |
<a href="https://www.nytimes.com/wirecutter/reviews/best-yoga-mats/"> | |
Bijal Kibliwala | |
</a> | |
</footer> | |
<script> | |
function subscribe() { | |
let name = prompt("What is your name?"); | |
prompt("What is your email address?"); | |
alert( | |
`Thanks ${name}, we'll be in touch! Meanwhile, wash your keyboard 🧘♀️` | |
); | |
} | |
let button = document.querySelector("button"); | |
button.addEventListener('click', subscribe); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment