-
Notifications
You must be signed in to change notification settings - Fork 0
/
agegroup.html
68 lines (55 loc) · 2.87 KB
/
agegroup.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
<!DOCTYPE HTML>
<html>
<head>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"> </script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="./agegroup.js"></script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--bootstarp-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body style="background-color: lightblue; width: 85%; margin: 50px auto;">
<!--age grp -->
<div class="main-body">
<nav class="navbar navbar-expand-lg">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars fa-1x"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item ">
<a class="nav-link" href="index.html">Gender Ratio</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="agegroup.html">Age Group</a>
</li>
<li class="nav-item">
<a class="nav-link" href="hospitalBeds.html">hospital Beds</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ICMRTesting.html">Tests</a>
</li>
<li class="nav-item">
<a class="nav-link" href="populationindia.html">Population</a>
</li>
</ul>
</div>
</nav>
<div id="chartContainer" ></div>
<div id="content-box" >
<p class="content">As per the analysis of coronavirus patients in India, total 42 per cent of the patient belong to the age group of 21-40.
The next most-hit age group is those between ages 41 and 50, which compromises of 33 per cent of the positive cases in the country.
Senior citizens (60+), form 17 per cent of the Covid-19 patient group in India.
</p>
</div>
</div>
</body>
</html>