-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (126 loc) · 4.42 KB
/
index.html
File metadata and controls
176 lines (126 loc) · 4.42 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="weather,open-source,web-app,pwa" />
<meta name="description" content="Open source mobile web app using wttr
api and glassmorphism aesthetics for desktop and mobile." />
<meta name="subject" content="Open source mobile web app using wttr
api and glassmorphism aesthetics for desktop and mobile" />
<meta name="copyright" content="ronynn" />
<meta name="language" content="ES" />
<meta name="robots" content="index,follow" />
<meta name="revised" content="Sunday, June 9th, 2024, 5:15 pm" />
<meta name="abstract" content="" />
<meta name="topic" content="Weather App" />
<meta name="summary" content="" />
<meta name="Classification" content="App" />
<meta name="author" content="ronynn" />
<meta name="designer" content="ronynn" />
<meta name="reply-to" content="ronynn" />
<meta name="owner" content="ronynn" />
<meta name="url" content="https://ronynn.github.io" />
<meta name="identifier-URL" content="https://ronynn.github.io" />
<meta name="pagename" content="ronynn weather" />
<meta name="category" content="webapp" />
<meta name="rating" content="General" />
<meta name="subtitle" content="Open source weather app using wttr api" />
<meta name="target" content="all" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="manifest.webmanifest" />
<title>Ronynn Weather</title>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<form id="myForm" class="glassmorphism-form">
<input type="text" id="myInput" placeholder="Enter city name .." />
</form>
<br />
<p id="loc"></p>
<center>
<a id="favoriteButton">(Save Searched Location)</a>
</center>
<p id="desc" style="text-align: center"> </p>
<p id="date" style="text-align: center"> </p>
<div class="panel">
<div class="left-panel">
<p id="temp"> </p>
</div>
<div class="right-panel">
<p id="minmax"> </p>
</div>
<br />
</div>
<div class="future">
<div class="details">
<p id="detailsnow"> </p>
</div>
<div class="div1">
<p id="tomorrow"> </p>
</div>
<div class="div2">
<p id="overmorrow"> </p>
</div>
</div>
<div id="buttons">
<button class="tablinks" onclick="openTab(event, 'today')">
Today
</button>
<button class="tablinks" onclick="openTab(event, 'nextday')">
Tomorrow
</button>
<button class="tablinks" onclick="openTab(event, 'nextnextday')">
Overmorrow
</button>
<button class="tablinks" onclick="openTab(event, 'graphs')">
Graphs
</button>
</div>
<div id="today" class="tabcontent">
<div id="today1"></div>
</div>
<div id="nextday" class="tabcontent">
<div id="nextday1"></div>
</div>
<div id="nextnextday" class="tabcontent">
<div id="nextnextday1"></div>
</div>
<center>
<div id="graphs" class="tabcontent"></div>
</center>
<div id="favoriteDetails" style="margin-top:2%">
<center style="font-size:2em;">Saved Locations</center>
<div id="favoriteList">
<!-- Placeholder for favorite location details -->
</div>
</div>
<footer>
An open source weather app using wttr API, made with ❤️ by Ronynn.
<br />
<br />
<a href="https://github.com/ronynn/weather"><img src="https://img.shields.io/github/stars/ronynn/weather?style=social" width="75" height="20" alt="stars on homepage repo" /></a>
</footer>
</body>
<script>
if (navigator.serviceWorker) {
navigator.serviceWorker.register("/weather/sw.js", {
scope: "/weather/"
});
}
</script>
<script src="script.js"></script>
<script data-goatcounter="https://ronynn.goatcounter.com/count" async src="//gc.zgo.at/count.js">
</script>
<noscript>
<img src="https://ronynn.goatcounter.com/count?p=/weatherNoscript">
<div class="noscript" style="text-align: center;color:white;">
Please consider turning on javascript to run this.
</div>
</noscript>
</html>