-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (104 loc) · 5.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'>
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Weather by Arsh</title>
<meta name="description" content="Namaste. This is a very simple and free Weather app by Arsh. Find out the current temperature, feels like temperature, minimum temperature, maximum temperature, clouds cover, pressure, humidity, wind speed, and wind direction of any place.">
<meta name="author" content="Arsh Saxena">
<meta name="keywords" content="Arsh Saxena, arsh.saxena02, GitHub, Coding, Indian, Student, weather, current temperature, feels like temperature, minimum temperature, maximum temperature, clouds cover, pressure, humidity, wind speed, wind direction, haze, clear, cloudy, thunderstorm, sunny, rainy, snow">
<link rel="stylesheet" href="/pages/first-page/style.css">
<link rel="stylesheet" href="/pages/globals/global-fonts.css">
<link rel="stylesheet" href="/pages/globals/global-navbar/global-navbar.css">
<link rel="stylesheet" href="/pages/globals/global-footer/global-footer.css">
<link rel="stylesheet" href="/pages/globals/global-scrollbar.css">
<link rel="stylesheet" href="/pages/globals/global-top-button/global-top-button.css">
<link rel="stylesheet" href="/pages/globals/global-preloader/global-preloader.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="theme-color" content="#1d1d1f">
<meta name="msapplication-navbutton-color" content="#1d1d1f">
<meta name="apple-mobile-web-app-status-bar-style" content="#1d1d1f">
<link rel="icon" href="/resources/first-page/icons/weather.png">
<link rel="apple-touch-icon" href="./resources/first-page/icons/weather.png">
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "b1zr8wxxis");
</script>
</head>
<body>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#nav").load("/pages/globals/global-navbar/global-navbar.html");
$("#footer").load("/pages/globals/global-footer/global-footer.html");
$("#top-button").load("/pages/globals/global-top-button/global-top-button.html");
});
</script>
<div class="container">
<span id="top-button"></span>
<nav class="nav" id="nav">
</nav>
<noscript>Please enable JavaScript!</noscript>
<div class="main-head">
<div class="heading-container">
<div class="heading-div">
<b>Select a unit system.</b>
</div>
</div>
<div class="button-container">
<a href="/unit/metric/">
<div class="unit-button">
<b>METRIC</b>
</div>
</a>
</div>
<div class="button-container">
<a href="/unit/imperial/">
<div class="unit-button">
<b>IMPERIAL</b>
</div>
</a>
</div>
<div class="button-container">
<a href="/unit/standard/">
<div class="unit-button">
<b>STANDARD</b>
</div>
</a>
</div>
</div>
<script src="/pages/first-page/script.js"></script>
<span class="footer-conatiner">
<footer>
<div class="footer" id="footer-part">
<div class="footnote">
Background image: <a href="https://www.reddit.com/r/iPhoneography/comments/q0c3pk/a_moody_one_shot_on_iphone_13_pro/" target="_blank">reddit</a>
•
Favicon: <a href="https://icons.iconarchive.com/icons/papirus-team/papirus-apps/512/weather-icon.png" target="_blank">Icon Archive</a>
</div>
<div class="footer-text">
<img src="/resources/first-page/icons/arsh.png" alt="arsh-img-footer">
<span class="path">
<span class="arrow"><i class="fa fa-angle-right"></i></span>
</span>
<img src="/resources/first-page/icons/weather.png" alt="weather-img-footer">
<span class="path">
<span class="page-name"> Weather by Arsh</span>
</span>
</div>
</div>
</footer>
<footer id="footer"></footer>
</span>
</div>
</body>
</html>