-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (117 loc) · 3.97 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<link rel="stylesheet" href="./css/utility.css" />
<link rel="stylesheet" href="./css/style.css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./images/earth-globe.svg"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<link
defer
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
<script
defer
src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""
></script>
<title>Track It</title>
</head>
<body>
<div class="container">
<div class="dashboard">
<nav class="navbar">
<div class="logo">
<img src="./images/earth-globe.svg" alt="" />
</div>
<div class="links">
<i class="fas fa-virus active" id="covid"></i>
<i class="fas fa-cloud-sun-rain" id="weather"></i>
<i class="far fa-newspaper" id="news"></i>
</div>
<div class="account"></div>
</nav>
<main class="main">
<div class="weather">
<div class="input-container">
<input
type="search"
placeholder="Search Weather Data"
id="input-field"
/>
<i class="fas fa-search-location"></i>
</div>
<h1 class="weather-timezone"></h1>
<div class="weather-img"></div>
<h1 class="weather-type"></h1>
<h1 class="weather-temp"></h1>
<div class="weather-data">
<h1 class="weather-windspeed"></h1>
<h1 class="weather-humidity"></h1>
</div>
<div class="footer">
<h1>Made with 💖 by Mukul Rajpoot</h1>
</div>
</div>
<div class="covid">
<div class="covid-header">
<h4>Covid 19 Tracker</h4>
<br />
<h1 class="label-country">Click on Map</h1>
<h4 class="label-date"></h4>
</div>
<div class="covid-data">
<div class="data-card">
<h4>ACTIVE</h4>
<h1 class="label-active red"></h1>
</div>
<div class="data-card">
<h4>RECOVERED</h4>
<h1 class="label-recovered green"></h1>
</div>
<div class="data-card">
<h4>DEATHS</h4>
<h1 class="label-death grey"></h1>
</div>
</div>
<div class="footer">
<h1>Made with 💖 by Mukul Rajpoot</h1>
</div>
</div>
<div class="news">
<h1>Covid News 📰</h1>
<br />
<h1>Construction is going on</h1>
<br />
<br />
<img src="./images/crane.svg" />
<div class="footer">
<h1>Made with 💖 by Mukul Rajpoot</h1>
</div>
</div>
</main>
<div class="map mapLaptop" id="map"></div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>