-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapIV.html
More file actions
31 lines (30 loc) · 937 Bytes
/
mapIV.html
File metadata and controls
31 lines (30 loc) · 937 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
29
30
31
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>W.App IV</title>
<link rel="stylesheet" href="css/mapIV.css">
</head>
<body>
<div class="app-wrap">
<header>
<input type="text" autocomplete="off" class="search-box" placeholder="search for a city">
</header>
<main>
<section class="location">
<div class="city">London, GB</div>
<div class="date">Sunday 22 2022</div>
</section>
<div class="current">
<div class="temp">15<span>°c</span></div>
<div class="weather">Sunny</div>
<div class="hi-low">13°c / 17°c</div>
</div>
</main>
</div>
<script src="js/mapIV.js"></script>
</body>
</html>