-
Notifications
You must be signed in to change notification settings - Fork 2
/
tracker_index.html
53 lines (48 loc) · 2.08 KB
/
tracker_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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv=“Pragma” content=”no-cache”>
<meta http-equiv=“Expires” content=”-1″>
<meta http-equiv=“CACHE-CONTROL” content=”NO-CACHE”>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="tracker_style.css">
<link rel="icon" type="image/png" href="icon.png" sizes="32x32">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="footer_style.css">
<title>Covid Tracker</title>
<style>
body{
background-color: black;
background: black;
}
</style>
</head>
<body>
<img src="banner2.jpg" width="100%" height="350vw" alt="banner">
<h1 class='section-heading'>COVID RESULT</h1>
<h2 class='section-subheading'>SEARCH COUNTRY NAME</h2>
<div class="section-description">
<p class="section-subheading">
<form id="query-form">
<div>
<label for="ingredients">
<div class="country">Country :</div></label><input class="textfield" id="ingredients" type="text" name="ingredients" placeholder="e.g.INDIA" onChange="sanitizeInputs()" />
</div>
<div class="button">
<br />
<input class="button" type="button" value="Reset" id="resetButton" onClick="this.form.reset();resetResults()" />
<input class="button" type="submit" value="Search ..." id="searchButton" />
</div>
</form>
</p>
<div class="section-subheading" id="search-results-heading"></div>
<div class="results-div" id="results"></div>
</body>
<!-- JQuery Scripts -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Our codes -->
<script src="tracker_app.js"></script>
</html>