Spaces:
Running
Running
Update index.html
Browse files- index.html +48 -18
index.html
CHANGED
@@ -1,19 +1,49 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Ayurvedic Clock</title>
|
6 |
+
<style>
|
7 |
+
body {
|
8 |
+
font-family: Arial, sans-serif;
|
9 |
+
text-align: center;
|
10 |
+
background: #fefbe9;
|
11 |
+
}
|
12 |
+
h1 {
|
13 |
+
margin-top: 30px;
|
14 |
+
color: #4b5320;
|
15 |
+
}
|
16 |
+
.clock {
|
17 |
+
display: grid;
|
18 |
+
grid-template-columns: repeat(3, 1fr);
|
19 |
+
gap: 10px;
|
20 |
+
margin: 30px auto;
|
21 |
+
max-width: 600px;
|
22 |
+
}
|
23 |
+
.box {
|
24 |
+
background: #fffef2;
|
25 |
+
border: 2px solid #ccc;
|
26 |
+
border-radius: 12px;
|
27 |
+
padding: 10px;
|
28 |
+
box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
|
29 |
+
}
|
30 |
+
.title {
|
31 |
+
font-weight: bold;
|
32 |
+
color: #7b3f00;
|
33 |
+
}
|
34 |
+
</style>
|
35 |
+
</head>
|
36 |
+
<body>
|
37 |
+
<h1>🕰 Ayurvedic Clock 🌞🌙</h1>
|
38 |
+
<div class="clock">
|
39 |
+
<div class="box"><div class="title">🌄 2–6 AM (VATA)</div>💡 Create, 🧘 Meditate, 🚽 Elimination, 😴 Light Sleep</div>
|
40 |
+
<div class="box"><div class="title">🌅 6–10 AM (KAPHA)</div>💪 Exercise, 🍵 Light Meal, 🧹 Cleanse</div>
|
41 |
+
<div class="box"><div class="title">🌞 10 AM–2 PM (PITTA)</div>📈 Action, 🥗 Heaviest Meal, 🔥 High Metabolism</div>
|
42 |
+
<div class="box"><div class="title">🌤 2–6 PM (VATA)</div>🧠 Communication, 🏃 Movement, 🍽 Last Meal</div>
|
43 |
+
<div class="box"><div class="title">🌇 6–10 PM (KAPHA)</div>🧘 Wind Down, 🛌 Prepare Sleep, 🌌 Go Within</div>
|
44 |
+
<div class="box"><div class="title">🌙 10 PM–2 AM (PITTA)</div>🛏 Deep Sleep, 🧠 Repair, 🔁 Detox</div>
|
45 |
+
<div class="box"><div class="title">🌘 2–6 AM (VATA)</div>🌌 Dream State, 🧠 Subconscious Activity</div>
|
46 |
+
</div>
|
47 |
+
<p>🕉️ Align your lifestyle with nature's rhythm for optimal well-being 🌿</p>
|
48 |
+
</body>
|
49 |
</html>
|