-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (45 loc) · 2.08 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="FaviconIcon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico?v=2">
<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”>
<!-- CSS Stylesheets -->
<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="css/kitchenblue.css?v=1">
<title>Covid Web</title>
</head>
<body>
<img src="images/banner.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">Country :</label><input class="textfield" id="ingredients" type="text" name="ingredients" placeholder="e.g.India,chiNA" 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>
<footer>
<br />
<p><code class="copyright-text">API LINK <a href="https://covid19api.com/" target= "_blank">Covid19API</a></code></p>
<code class="copyright-text">CREATED BY ROHIT GUPTA</code>
</footer>
<!-- JQuery Scripts -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Our codes -->
<script src="js/kitchenblue.js?v=1"></script>
</html>