-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
30 lines (29 loc) · 1.01 KB
/
app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="app.css">
<title>Web App</title>
</head>
<body>
<div class="app-main">
<div class="searchBox">
<input type="text" id="input-box" class="input-box" placeholder="Enter City Name..." autocomplete="off">
</div>
<div class="weather-details">
<div class="location-details">
<div class="city" id="city">---</div>
<div class="date" id="date">---</div>
</div>
<div class="weather-status">
<div class="temp" id="temp">----</div>
<div class="min-max" id="min-max">---</div>
<div class="weather" id="weather">---</div>
<div class="img"></div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>