-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (89 loc) · 3.46 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Covid19-Tracker</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap"
rel="stylesheet" />
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</head>
<body>
<div class="container">
<!-- DarkMode-->
<div class="dark-mode">
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
</div>
</div>
<!----Header -->
<div class="total">
<div class="total-container">
<img src="assets/totalcases.png" alt="totalcases" width="40" height="40" />
<h3>Total de casos</h3>
<p id="_totalCases"></p>
</div>
<div class="total-container">
<img src="assets/deaths.png" alt="deaths" width="40" height="40" />
<h3>Total de Muertes</h3>
<p id="_totalDeaths"></p>
</div>
<div class="total-container">
<img src="assets/recovered.png" alt="recovered" width="40" height="40" />
<h3>Total de Recuperados</h3>
<p id="_totalRecovered"></p>
</div>
</div>
<!--Search Box-->
<!-- <div class="search">
<input type="text" class="search-box" placeholder="Buscar por país..." />
</div> -->
<!------ Content -->
<div class="content">
<!---All Countries-->
<div class="AllCountries" id="Countries">
</div>
<button class="more">Ver Más</button>
<div class="loader-info">
<span class="loader2">
<span class="loader-inner2">
<img src="assets/totalcases.png" alt="totalcases" width="50" height="50" />
</span>
</span>
</div>
</div>
<!--- Footer-->
<div class="footer">
<div class="social-media">
<div class="linkedln">
<img class="social" src="assets/linkedin.png" alt="totalcases" width="50" height="50" />
<p>Linkedln</p>
</div>
<div class="instagram">
<img class="social" src="assets/instagram.png" alt="totalcases" width="50" height="50"
href="www.google.com" />
<p>Instagram</p>
</div>
<div class="gmail">
<img class="social" src="assets/gmail.png" alt="totalcases" width="50" height="50" />
<p>Gmail</p>
</div>
</div>
<p class="copyright">Copyright © 2020 All Rights Reserved by Jose Luis Herrera.</p>
</div>
</div>
<div class="loader-wrapper">
<h1 class="title-loader">Coronavirus tracker</h1>
<span class="loader">
<span class="loader-inner">
<img src="assets/totalcases.png" alt="totalcases" width="70" height="70" />
</span>
</span>
</div>
<script src="script.js"></script>
</body>
</html>