-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 905 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
<!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" />
<title>weather App</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<input type="text" autocomplete="on" class="search-box" placeholder="Search for a city">
</header>
<main>
<section class="location">
<div class="city">Manila, Las Pinas</div>
<div class="date">Monday 30 May</div>
</section>
<div class="current">
<div class="temp">15<span>°C</span></div>
<div class="weather">Sunny</div>
<div class="hi-low">13°C / 16°C</div>
</div>
</main>
<script src="main.js"></script>
</body>
</html>