PriyaMishra commited on
Commit
76a5f68
·
verified ·
1 Parent(s): 45009b4

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +48 -18
index.html CHANGED
@@ -1,19 +1,49 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>