-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 836 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
<!DOCTYPE html>
<html>
<head>
<title>Simple Weather App</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="container" class="container">
<div class="inputBox">
<input type="text" placeholder="Search for a city" class="text" />
<button class="submit">SUBMIT</button>
</div>
<div class="contentBox">
<h1 class="city"></h1>
<img class="icon" />
<p class="description"></p>
<p class="temp"></p>
<p class="humi"></p>
<p class="wind"></p>
</div>
<div class="error"></div>
</div>
<script src="script.js"></script>
</body>
</html>