-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 785 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (30 loc) · 785 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>
<head>
<title>Weather Application</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="wrapper" >
<div class="title">
<h1>Weather Application</h1>
</div>
<div class="input">
<input type="text" name="search" class="input-search" placeholder="Search for the city..">
<button type="button" class="button" onclick="clearResult()">RESET</button>
</div>
<div class="container" id ="container">
<div class="location">
<div class="city"></div>
<div class="l-date"></div>
</div>
<div class="temperature">
<div class="degrees"><span></span></div>
<div class="d-type"></div>
<div class="d-range"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>