-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.html
34 lines (32 loc) · 1.16 KB
/
results.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PCOS Risk Assessment Results</title>
<link rel="stylesheet" href="results.css">
</head>
<body>
<div class="container">
<h1>Assessment Results</h1>
<div id="results-summary" class="results-summary">
<!-- Result dynamically inserted here -->
</div>
<div class="recommendations">
<h2>Recommendations</h2>
<ul id="recommendations-list">
<!-- Recommendations dynamically inserted here -->
</ul>
</div>
<div id="map"></div>
<div class="resources">
<h2>Learn More About PCOS</h2>
<ul>
<li><a href="https://www.womenshealth.gov/a-z-topics/polycystic-ovary-syndrome" target="_blank">Women's Health - PCOS</a></li>
<li><a href="https://www.mayoclinic.org/diseases-conditions/pcos/symptoms-causes/syc-20353439" target="_blank">Mayo Clinic - PCOS Overview</a></li>
</ul>
</div>
</div>
<script src="results.js"></script>
</body>
</html>