-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 958 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
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Weather App</title>
<link rel="stylesheet" href="main.css" />
<link rel="shortcut icon" href="/icons8-cloud-48.png" type="image/x-icon">
</head>
<body>
<div class="app-wrap">
<header>
</header>
<section class="section">
<input type="text" autocomplete="off" class="search-box" placeholder="Search for a city..." />
</section>
<main>
<section class="location">
<div class="city">Seattle, US</div>
<div class="date">Monday 20 December 2021</div>
</section>
<div class="current">
<div class="temp">3<span>°c</span></div>
<div class="weather">Cloudy</div>
<div class="hi-low">2°c / 5°c</div>
</div>
</main>
</div>
<script src="main.js"></script>
</body>
</html>