HTMLify
index.html
Views: 22 | Author: karbonsites
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 93 94 95 96 97 98 99 100 101 102 103 104 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>The Cloud - Support, Education, Empowerment</title> <link rel="stylesheet" href="style.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet"> </head> <body> <header class="main-header"> <nav class="navbar"> <div class="logo">The Cloud</div> <ul class="nav-links"> <li><a href="index.html" class="nav-link active">Home</a></li> <li><a href="services.html" class="nav-link">Services</a></li> <li><a href="resources.html" class="nav-link">Library</a></li> <li><a href="about.html" class="nav-link">About Us</a></li> <li><a href="policy.html" class="nav-link">Privacy</a></li> <li><a href="global.html" class="nav-link">Global</a></li> <li><a href="#contact" class="nav-link cta-link">Get Support</a></li> </ul> </nav> </header> <main> <section class="hero"> <div class="hero-content"> <h1 class="fade-in-up">Confidential Support. Clear Path Forward.</h1> <p class="fade-in-up delay-1">We offer non-judgmental emotional support, evidence-based education, and empowerment tools to help you thrive.</p> <a href="services.html" class="btn btn-primary fade-in-up delay-2">View Our Services</a> </div> <div class="hero-image-placeholder fade-in-up delay-3"> <img src="image-calm-abstract.jpg" alt="Abstract calming image representing mental clarity" class="content-image"> </div> </section> <section class="features-grid container"> <h2 class="section-title fade-in">Our Core Commitments</h2> <div class="grid-3-col"> <div class="feature-card fade-in-element"> <div class="icon">💬</div> <h3>Emotional Support</h3> <p>A safe, inclusive space for individual, couples, and group conversations.</p> </div> <div class="feature-card fade-in-element"> <div class="icon">📞</div> <h3>Evidence-Based Education</h3> <p>Learn practical tools rooted in CBT, mindfulness, and established therapeutic techniques.</p> </div> <div class="feature-card fade-in-element"> <div class="icon">👤</div> <h3>Empowerment</h3> <p>Tools to build resilience against anxiety, depression, stress, and life transitions.</p> </div> </div> </section> <section class="cta-banner"> <div class="container cta-content"> <h2 class="fade-in-up-fast">Need Help Now?</h2> <p class="fade-in-up-fast delay-1">Immediate crisis contact information is available below. We are here for you.</p> <a href="policy.html#crisis" class="btn btn-secondary fade-in-up-fast delay-2">View Crisis Guidance</a> </div> </section> </main> <footer id="contact" class="main-footer"> <div class="container footer-grid"> <div class="footer-col"> <h4>The Cloud</h4> <p>Dedicated to confidential, inclusive, and non-judgmental mental wellness.</p> </div> <div class="footer-col"> <h4>Quick Links</h4> <ul> <li><a href="index.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="resources.html">Library</a></li> <li><a href="about.html">About Us</a></li> <li><a href="policy.html">Privacy</a></li> <li><a href="global.html">Global</a></li> </ul> </div> <div class="footer-col" id="emergency-info"> <h4>Emergency</h4> <p><strong>Call/Text: 988</strong> (USA/Canada)</p> <p style="font-size: 0.9rem; margin-top: 10px;">This site is NOT a substitute for emergency care. Find global hotlines below.</p> <a href="policy.html#crisis" class="btn btn-small btn-warning" style="margin-top: 10px;">International Hotlines</a> </div> </div> <div class="copyright"> © 2026 The Cloud. All rights reserved. | Commitment to Inclusivity & Ethics. </div> </footer> <script src="script.js"></script> <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner"> <span>✨</span> <div>Built with <b>Karbon Sites</b></div> </a> </body> </html> |