-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (74 loc) · 3.48 KB
/
index.html
File metadata and controls
80 lines (74 loc) · 3.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="OvaryWise - PCOS Risk Assessment: Empowering women to assess their PCOS risk with an interactive tool.">
<title>OvaryWise - PCOS Risk Assessment</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<div class="title-container">
<div class="title-text">
<h1>OvaryWise</h1>
<p>Assess your PCOS Risk</p>
</div>
<img src="Logo.png" alt="OvaryWise Logo">
</div>
</div>
</header>
<main>
<section class="intro">
<div class="container">
<h2>Take Charge of Your Health</h2>
<p>OvaryWise helps you assess your risk of PCOS through an interactive questionnaire. Get personalized insights and recommendations.</p>
<div class="caution">
<p><strong>Word of Caution:</strong> This tool is for informational purposes only. It is <u>not a diagnostic tool</u> and should not replace professional medical advice. Always consult your healthcare provider for any concerns.</p>
</div>
<div class="consent">
<label>
<input type="checkbox" id="consent-checkbox"> I understand and agree to proceed with the assessment.
</label>
</div>
<a href="assessment.html" class="cta-button disabled" id="start-assessment" disabled>Start Assessment</a>
</div>
</section>
<section class="resources">
<div class="container">
<h2>Learn More About PCOS</h2>
<ul>
<li><a href="https://www.hopkinsmedicine.org/health/conditions-and-diseases/polycystic-ovary-syndrome-pcos" target="_blank">What is PCOS?</a></li>
<li><a href="https://www.who.int/news-room/fact-sheets/detail/polycystic-ovary-syndrome" target="_blank">Symptoms & Causes</a></li>
<li><a href="https://www.healthline.com/health/polycystic-ovary-disease" target="_blank">Management Tips</a></li>
</ul>
</div>
</section>
<section class="video-carousel">
<div class="container">
<div class="carousel">
<button class="prev-btn" onclick="changeVideo(-1)">❮</button>
<div class="carousel-content">
<iframe class="carousel-video" src="https://www.youtube.com/embed/HzG-zaMYZZ8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<iframe class="carousel-video" src="https://www.youtube.com/embed/Az9lWdqebaU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<iframe class="carousel-video" src="https://www.youtube.com/embed/TduTthL5Fr8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<button class="next-btn" onclick="changeVideo(1)">❯</button>
</div>
</div>
</section>
<section class="disclaimer">
<div class="container">
<p><strong>Disclaimer:</strong> OvaryWise is an informational tool and not a diagnostic service. Please consult a healthcare professional for medical advice.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 OvaryWise. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>