-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (91 loc) · 2.47 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./images/fav-icon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./style/main.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=Otomanopee+One&display=swap"
rel="stylesheet"
/>
<title>VaccinBoard</title>
</head>
<body>
<canvas id="bg"></canvas>
<header>
<h1>VaccinBoard</h1>
</header>
<main>
<section>
<div class="registration">
<h2>Vaccination Registration</h2>
</div>
<div>
<h3>Please do register for vaccination from the links below :</h3>
</div>
<div class="links">
<a href="https://selfregistration.cowin.gov.in/"
><img src="./images/co-win.png" alt="co-win" srcset=""
/></a>
<a href="https://www.aarogyasetu.gov.in/applink/"
><img src="./images/aarogya_btn_img.png" alt="aarogya" srcset=""
/></a>
<a
href="https://web.umang.gov.in/web_new/login?redirect_to=&utm_source=MyGov&utm_medium=MyGovCovid-19"
><img src="./images/umang-logo.png" alt="umang" srcset=""
/></a>
</div>
</section>
<section class="part2">
<div>
<h2>Cases across India</h2>
</div>
<div class="cases">
<!-- <div class="totalCases">
<h4>Total Cases</h4>
<h4>
${confirmedCases}
</h4>
</div>
<div class="recovered">
<h4>Recovered</h4>
<h4>
${recovered}
</h4>
</div>
<div class="deaths">
<h4>Deaths</h4>
<h4>
${deceased}
</h4>
</div -->
</div>
</section>
<section class="vaccinated">
<div>
<h2>Vaccination Status</h2>
</div>
<div class="vaccine">
<!-- <div className="dose1">
<h4>Dose 1</h4>
<h4>${dose1}</h4>
</div>
<div className="dose2">
<h4>Dose 2</h4>
<h4>${dose2}</h4>
</div> -->
</section>
</main>
<script src="./script/three.min.js"></script>
<!-- <script src="./script/OrbitControls.js"></script> -->
<script src="./script/main.js"></script>
</body>
</html>