-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.html
118 lines (105 loc) · 3.96 KB
/
start.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
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
116
117
118
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
<!-- All Meta Information -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="Pregnancy Guide Website" />
<meta
name="keywords"
content="PregEdu, Pregnancy Guide Web App, Pregnancy Blogs, Pregnancy Cycle, Pregnancy Report Check"
/>
<meta
name="author"
content="Bharti Kumari, Diya Vijay, Shubhanshu Sharma"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Page Title -->
<title>PregEdu</title>
<!-- Favicon Icon -->
<link rel="icon" type="image/x-icon" href="assets/favicon.png" />
<!-- Google Font Style -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<!-- Google Icon -->
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"
rel="stylesheet"
/>
<!-- Fontawesome Icon -->
<script
defer
src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"
integrity="sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc"
crossorigin="anonymous"
></script>
<!-- External CSS -->
<link rel="stylesheet" type="text/css" href="dist/css/main.css" />
<!-- External JS -->
<script src="dist/js/main.js" async></script>
<!-- Head Closing -->
</head>
<body>
<!-- Main Body -->
<!-- Header -->
<header>
<!-- Navbar Starts-->
<nav>
<input type="checkbox" id="check" />
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">PregEdu</label>
<ul class="nav-item">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="schemes.html">Schemes</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<!-- Navbar Closing-->
</header>
<!-- Header Closing -->
<div>
<img
class="health-test-image"
src="assets/female doctor with stethoscope.png"
alt="Health Test"
/>
<div class="health-test-content">
<h1 class="health-test-h-content">Health Test</h1>
<p class="health-test-p-content">
Before starting the Health Check test, we recommend that you take a moment to read the instructions carefully. It's important to provide accurate and truthful answers to the questions and provide detailed symptom information to ensure the most accurate recommendations possible.<br> Health Check feature uses a series of questions and symptom information provided by you to generate personalized recommendations based on your health status. <br>By following the instructions and providing accurate information, you can get the most out of our Health Check feature and take control of your health and well-being.
</p>
<p style="color:red" class="health-test-p-content">
Please keep in mind that our Health Check feature uses machine learning models to generate personalized recommendations, but the accuracy of these recommendations may vary. We advise that you use the results as a general guide and not a replacement for professional medical advice.
</p>
<button
onclick="window.location.href = 'test.html';"
class="check-risk-button"
>
Check Risk
</button>
<button
onclick="window.location.href = 'nutrition-test.html';"
class="nutrition-test-button"
>
Nutrition Test
</button>
</div>
</div>
<!-- Body Closing -->
</body>
<!-- HTML Closing -->
</html>