Untitled
unknown
plain_text
4 months ago
3.7 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Astrology for Mental Wellness</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f9f9f9; } .container { max-width: 1200px; margin: auto; padding: 20px; } header { background: #4a90e2; color: white; padding: 10px 20px; text-align: center; } .section { margin: 20px 0; padding: 20px; background: white; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .section h2 { color: #4a90e2; } .dashboard { display: flex; flex-wrap: wrap; gap: 20px; } .card { flex: 1; min-width: 250px; padding: 15px; border: 1px solid #ddd; border-radius: 10px; background: #fff; text-align: center; } .card h3 { margin: 10px 0; color: #333; } .card p { color: #666; } .cta { margin-top: 20px; text-align: center; } .cta button { padding: 10px 20px; background: #4a90e2; color: white; border: none; border-radius: 5px; cursor: pointer; } .cta button:hover { background: #357abd; } </style> </head> <body> <header> <h1>Astrology for Mental Wellness</h1> </header> <div class="container"> <!-- Onboarding Section --> <div class="section"> <h2>Personalize Your Journey</h2> <p>Tell us about your mental health goals and birth details to get started.</p> <form> <label for="goal">Choose Your Goal:</label><br> <select id="goal" name="goal"> <option value="anxiety">Manage Anxiety</option> <option value="confidence">Boost Confidence</option> <option value="relationships">Improve Relationships</option> </select><br><br> <label for="birth-details">Enter Your Birth Details:</label><br> <input type="text" id="birth-details" name="birth-details" placeholder="Date, Time, Location"><br><br> <button type="submit">Submit</button> </form> </div> <!-- Dashboard Section --> <div class="section"> <h2>Your Dashboard</h2> <div class="dashboard"> <div class="card"> <h3>Today's Mood Forecast</h3> <p>Positive vibes with minor challenges in the afternoon. Stay grounded.</p> </div> <div class="card"> <h3>Daily Affirmation</h3> <p>"I am resilient and in harmony with the universe."</p> </div> <div class="card"> <h3>Suggested Activity</h3> <p>10-minute meditation for mindfulness.</p> </div> </div> </div> <!-- Mood Tracker Section --> <div class="section"> <h2>Mood Tracker</h2> <p>Track your emotions and see how planetary movements align with your mood changes.</p> <div class="cta"> <button>View Mood History</button> </div> </div> <!-- Community Section --> <div class="section"> <h2>Community Support</h2> <p>Connect with astrologers and like-minded individuals for support and guidance.</p> <div class="cta"> <button>Join the Community</button> </div> </div> </div> </body> </html>
Editor is loading...
Leave a Comment