-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.12 KB
/
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
<!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">
<link rel="stylesheet" href="style.css">
<title>WeatherApp</title>
</head>
<body>
<div class="app-main">
<div class="searchInputBox">
<input type="text" class="input-box" id="input-box" placeholder="Enter Your City Name" autocomplete="off">
</div>
<div class="weather-body">
<div class="lacation-details">
<div class="city" id="city">City,County</div>
<div class="date" id="date">__ Month (Day), 20__</div>
</div>
<div class="weather-status">
<div class="temp" id="temp">__°C</div>
<div class="min-max" id="min-max">__°C (min) / __°C (max)</div>
<div class="weather" id="weather">Weather Conditions</div>
<div class="img"></div>
</div>
</div>
</div>
</body>
<script src="main.js"></script>
</html>