-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml_table.html
More file actions
46 lines (44 loc) · 1.23 KB
/
Copy pathhtml_table.html
File metadata and controls
46 lines (44 loc) · 1.23 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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="contact.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<title>Contact Us Form</title>
</head>
<body><center>
<label class="label-html-table">Health Card</label>
<table style="width:50%">
<tr>
<th rowspan="2">State of health</th>
<th colspan="2">Fasting Value</th>
<th colspan="1">Fasting Value</th>
</tr>
<tr>
<th>Minimum</th>
<th>Maximum</th>
<th>2 Hours After eating</th>
</tr>
<tr>
<td>Healthy</td>
<td>70</td>
<td>100</td>
<td>Less than 140</td>
</tr>
<tr>
<td>Pre-Diabetes</td>
<td>101</td>
<td>126</td>
<td>140 to 200</td>
</tr>
<tr>
<td>Diabets</td>
<td>More than 126</td>
<td>N/A</td>
<td>More than 200</td>
</tr>
</table>
</center>
</body>
</html>