forked from antun-nakic/PWAfrontend2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (62 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="description" content="Modern web app for checking the weather reports">
<title>Weather App</title>
<!-- javascript -->
<script src="./src/app.js" defer></script>
<link rel="manifest" href="./weatherApp.webmanifest">
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="/imgsrc/favicon.ico">
<!-- css -->
<link rel="stylesheet" href="style.css" />
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/adf56416fe.js" crossorigin="anonymous"></script>
</head>
<body>
<button id="notifications">Pretplati se na notifikacije</button>
<main class="weather-app">
<header>
<div class="container">
<div id="results">
</div>
</div>
</header>
<div class="panel">
<h2 id="title">Check weather for any city</h2>
<form id="form">
<div class="form-wrapper">
<input
id="input"
type="text"
onfocus="this.value=''"
placeholder="City name"
/>
<div class="outcome-box">
<ul id="list" class="outcome_list-items">
</ul>
</div>
</div>
<button id="button">Search <i class="fa-solid fa-magnifying-glass"></i></button>
</form>
<div id="additional_info"></div>
</div>
</div>
</main>
<div id="snackbar"><i class="fa-solid fa-triangle-exclamation"></i><strong> Error 404:</strong> City data not found</div>
</body>
</html>