-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifeendex.html
37 lines (29 loc) · 910 Bytes
/
ifeendex.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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA_Compatible" content="ie=edge">
<title>Weather Api</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="headin">
<h1 class="logo">WEATHER REPORTER </h1>
</div>
<div class="input">
<input type="text" class="iv" placeholder="Enter a Place ....">
<input type="submit" value="Submit" class="button">
</div>
<div class="display">
<h2 class ="to"></h2>
<p class="long"></p>
<p class="lat"></p>
<h1 class="name"></h1>
<h3 class="desc"></h3>
<p class="temp"></p>
<p class="humid"></p>
</div>
<script src="app.js"></script>
</body>
</html>