-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (66 loc) · 2.21 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
<html>
<head>
<title>World Covid Tracker </title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="app.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="covid-19 tracker for all countries , Dev. By: Gargar Johnson">
<meta name="robots" content="index,follow">
</head>
<body>
<!--start-->
<div class="row">
<div class="col-md-12">
<div class="top">
<center>
Covid-19 Tracker
</center>
</div>
<div class="elem">
<form>
<input type="text" class="form-control" placeholder="search country">
</form>
<button class="btn btn-warning"><img src="zoom.png" width="30px"></button>
</div>
<br>
<br>
<center>
<img src="load.gif" class="loader" width="50px" style="margin-top:50px; ">
</center>
<br>
<div class="card"style="font-family:monospace; postion:relative; margin-top:30px;background:rgba(23,107,223,0.275)">
<h4 class="message "></h4>
<ul class="list">
<li class="country"></li>
<li class="cases"></li>
<li class="today"></li>
<li class="recovered"></li>
<li class="deaths"></li>
<li class="todayDeaths" ></li> <li class="total"></li>
</ul>
</div>
</div>
</div>
<div class="recent">
<center>
<p class="saved"></p>
</center>
</div>
<!--error space-->
<div class="alert alert-warning">
<span class="cancel">
×
</span>
<p id="msg"></p>
<hr>
</div>
<div class="autor">
<p>Dev. By: Gargar Johnson </p>
</div>
<!-- end of elemts -->
<script src="jquery.min.js"></script>
<script src="main.js"></script>
</body>
</html>