-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 880 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 880 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Weather App</title>
<link rel="stylesheet" href="style.css">
<script src="config.js" defer></script>
<script src="script.js" defer></script>
<link rel="icon" href="https://icons-for-free.com/iconfiles/png/512/weather+icon-1320087273185061618.png">
</head>
<body>
<div class="container">
<header>
<input type="text" id="search" placeholder="City , (Country)">
</header>
<main>
<div id="location"></div>
<div id="date"></div>
<div id="temperature"></div>
<img src="" id="weather_icon" />
<div id="weather"></div>
<div id="min-max"></div>
</main>
</div>
</body>
</html>