-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.82 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PCOS Management</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header-container">
<nav>
<img class="logo" src="images/1-removebg-preview (1).png" alt="PCOS Management Logo">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="selfdiagnosis.html">SelfDiagnosis</a></li>
<li><a href="dietplanner.html">DietPlanner</a></li>
<li><a href="yogaplanner.html">YogaPlanner</a></li>
<li><a href="cycletracker.html">CycleTracker</a></li>
<li><a href="lifestylesuggestion.html">LifestyleSuggestions</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="text-container">
<h1 class="hero-title">Unveil the Mystery:</h1>
<h2 class="hero-title">Take Control of Your PCOS Journey</h2>
<form id="predictionForm">
<div class="form-group">
<label for="age">Age:</label>
<input type="number" id="age" name="age" required>
</div>
<div class="form-group">
<label for="bmi">BMI:</label>
<input type="number" id="bmi" name="bmi" step="0.1" required>
</div>
<button type="submit">Predict</button>
</form>
<div id="predictionResult" class="result-container">
<!-- Result will be shown here -->
</div>
</div>
<img class="hero-image" src="images/gyne-cancers-removebg-preview.png" alt="PCOS Illustration">
</section>
</main>
<script src="script.js"></script>
</body>
</html>