-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.03 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Weather website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div id="location">
<input type="text" id="country" placeholder="Country">
<input type="text" id="city" placeholder="City">
<input type="submit" id="check" value="Go">
</div>
<img src="tempicons/clouds.svg" alt="" id="tempIcon">
<div class="flex">
<h2 id="weatherCountry">Cityname</h2>
<h2 id="temperature">7°<strong>C</strong></h2>
<h2 id="weatherDescription">Description</h2>
<ul>
<div class="features">
<li id="feelsLike">Feels Like 0°C</li>
<li id="humidity">Humidity 79%</li>
<li id="wind">Wind: 18 km/h</li>
<li id="latitude">Latitude 0</li>
</div>
</ul>
<div class="h1">Done by Atabul</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>