HTMLify
resources.html
Views: 31 | 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 105 106 107 108 109 110 111 112 113 114 115 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Self-Help Resource Library - The Cloud</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">Home</a></li> <li><a href="services.html" class="nav-link">Services</a></li> <li><a href="resources.html" class="nav-link active">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 class="container"> <section class="page-header"> <h1 class="fade-in-up">The Resilience Library</h1> <p class="fade-in-up delay-1">Evidence-based techniques for Anxiety, Depression, PTSD, Stress, Grief, and Relationships.</p> </section> <section class="resource-list"> <h2 class="section-title fade-in">Explore By Condition & Tool</h2> <div class="bento-grid-resources"> <div class="bento-item wide-item resource-card-special animate-pulse-border"> <h3>Crisis Guidance & Immediate Support</h3> <p>If you are experiencing an emergency, use these links immediately. Our site is NOT a substitute for emergency medical care.</p> <a href="policy.html#crisis" class="btn btn-small btn-warning">View Global Crisis Contacts</a> </div> <div class="bento-item resource-card fade-in-element" style="grid-column: span 4;"> <img src="image-anxiety-icon.jpg" alt="Icon representing anxiety awareness" class="resource-image"> <h3>Managing Anxiety</h3> <p>Simple explanations and immediate grounding tools for acute worry and panic.</p> <span class="read-more">Coping Tools →</span> </div> <div class="bento-item resource-card fade-in-element" style="grid-column: span 4;"> <img src="image-meditation-focus.jpg" alt="Icon representing mindfulness and focus" class="resource-image"> <h3>Guided Meditations</h3> <p>Audio library focusing on stress reduction, focus improvement, and self-compassion.</p> <span class="read-more">Access Audio →</span> </div> <div class="bento-item resource-card fade-in-element" style="grid-column: span 4;"> <img src="image-journaling.jpg" alt="Icon representing journaling and reflection" class="resource-image"> <h3>Journaling Prompts</h3> <p>Downloadable PDF worksheets focusing on CBT thought challenging and gratitude practices.</p> <span class="read-more">Download Worksheets →</span> </div> <div class="bento-item resource-card fade-in-element" style="grid-column: span 6;"> <h3>Understanding Depression</h3> <p>Learn about the symptoms, dispelling stigma, and finding motivation for small steps.</p> <span class="read-more">Read Guide →</span> </div> <div class="bento-item resource-card fade-in-element" style="grid-column: span 6;"> <img src="image-podcast.jpg" alt="Icon representing podcast audio" class="resource-image"> <h3>The Cloud Podcast</h3> <p>Listen to interviews with experts covering grief, addiction aftercare, and relationship health.</p> <span class="read-more">Listen Now →</span> </div> </div> </section> <section class="search-section"> <h2 class="section-title fade-in">Search Our Library</h2> <div class="search-bar-container"> <input type="text" placeholder="Search articles, topics (e.g., CBT, Grief), or keywords..." class="search-input fade-in-element"> <button class="btn btn-search fade-in-element">Search</button> </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 making mental wellness accessible to everyone.</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"> <h4>Emergency</h4> <p>If you are in crisis, please call or text 988 (USA/Canada).</p> </div> </div> <div class="copyright"> © 2026 The Cloud. All rights reserved. </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> |