-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 912 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Weather App</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap"
rel="stylesheet"
/>
<link href="./css/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Notification -->
<div class="notification" data-close-popup>
<p class="notification__title"></p>
<span class="notification__text"></span>
<span class="notification__close close-popup-btn">✖</span>
</div>
<!-- Loader -->
<div class="loader hide">
<div class="spin"></div>
<p>Loading...</p>
</div>
<!-- Main App -->
<main class="main-container">
<!-- Weather Forcasts Goes Here -->
</main>
<script src="./js/app.js"></script>
</body>
</html>