-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (37 loc) · 1.29 KB
/
index.html
File metadata and controls
50 lines (37 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>WEATHER APP with Location</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon.ico">
<link rel="stylesheet" href="styles.css">
<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=Nunito&display=swap" rel="stylesheet">
</head>
<body>
<!-- <form action="/" method="post">
</form> -->
<div class="container">
<div class="title">
<p>Weather</p>
</div>
<div class="status"></div>
<div class="weather-info">
<div class="image-icon"><img src="./images/unknown.png" alt="unknown"></div>
<div class="temperature">
<p>- °<span>C</span></p>
</div>
<div class="description">
<p> - </p>
</div>
<div class="location">
<p> - </p>
</div>
</div>
<div class="time-and-date">- -</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="./app.js" charset="utf-8"></script>
</body>
</html>