-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.45 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
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Health Analysis Data</title>
<link rel="stylesheet" href="./health_analysis.css">
</head>
<body>
<nav><h1>Health Analysis Census</h1>
<ul>
<li><a href="./index.html" id="home">Home </a></li>
<li><a href="./health_contact.html" id="contact">Contact Us </a></li>
<li><input type="text" id="conditionInput" placeholder="Enter a health condition"> </li>
<li><button id='btnSearch'>Search</button>
</li>
</ul>
</nav>
<div class="container">
<div class="analysisForm">
<h1>Healthcare Data Analysis</h1>
<div>
<label for="name">Name:</label>
<input type="text" id="name">
</div>
<div>
<label>Gender:</label>
<label for="male">Male</label>
<input type="radio" name="gender" id="male" value="Male">
<label for="female">Female</label>
<input type="radio" name="gender" id="female" value="Female">
</div>
<div>
<label for="age">Age:</label>
<input type="number" id="age">
</div>
<div>
<label for="condition">Condition:</label>
<select id="condition">
<option value="">Select condition</option>
<option value="Diabetes">Diabetes</option>
<option value="Thyroid">Thyroid</option>
<option value="High Blood Pressure">High Blood Pressure</option>
</select>
</div>
<button id="addPatient">Add Patient</button>
<h2>Analysis Report</h2>
<div id="report"></div>
</div>
<div class="searchCondition">
<div id="result"></div>
</div>
</div>
<script src="./health_analysis.js"></script>
</body>
</html>