-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T5406EF7GC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-T5406EF7GC');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="./assest/favicon.ico" type="image/x-icon">
<meta name="description" content="Simple Weather UI Showcasing Glassmorphism Design" />
<meta name="keywords" content="glassmorphism,Glassmorphism,weather,glassmorphism design,Glass Weather,glass weather,weather ui" />
<meta name="author" content="Nitesh Atkar" />
<meta property="og:title" content="Glass Weather" />
<meta property="og:description" content="Simple Weather UI Showcasing Glassmorphism Design" />
<meta property="og:type" content="website" />
<title>Glass Weather</title>
</head>
<body
<div class="container">
<h1>Glass Weather🌡️📡</h1>
<br />
<div class="card">
<div class="content">
<div class="date"></div>
<h2></h2>
<h3></h3>
<h4></h4>
<span id="humidity"></span>
<span id="feels"></span>
<img alt="weather-icon" />
<input class="city" type="text" id="loc" placeholder="Enter City" autocomplete="off" />
<input class="save" type="button" value="Save" />
</div>
</div>
<footer>
<span class="copy">©</span>
<a class="link" href="http://www.linkedin.com/in/niteshatkar/" target="_blank">Nitesh Atkar</a>
</footer>
</div>
<script type="text/javascript" src="js/vanilla-tilt.js"></script>
<script src="js/storage.js"></script>
<script src="js/weather.js"></script>
<script src="js/ui.js"></script>
<script src="js/app.js"></script>
</body>
</html>