-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.37 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
<!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">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-85PPDCKBW3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-85PPDCKBW3');
</script>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./icon.svg" type="image/x-icon">
<title>CoWin Vaccine Tracker</title>
</head>
<body>
<div class="overall">
<div class="input">
<div id="container">
<p class="default">Pincode:</p>
<div id="pinDiv"><input type="number" id="pin" placeholder="Enter the pincode" class="default"></div>
<div id="btnDiv"><button type="submit" onclick="getData()" class="default" id="submit">Submit</button></div>
</div>
</div>
<div id="ans">
</div>
</div>
<script src="./main.js"></script>
<div id="footer">
<footer>
<p>© Created by <a href="https://github.com/pranaygupta25" target="_blank">Pranay Gupta</a></p>
</footer>
</div>
</body>
</html>