-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 1.03 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
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">
<title>Weather App</title>
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" >
<script src="script.js" async></script>
</head>
<body>
<div class="heading"><h1 class="heading">Live Weather App</h1></div>
<div class="container-fluid">
<section class="main">
<section class="inputs">
<input type="text" placeholder="Enter any city name..." id="cityinput">
<input type="submit" value="Submit" id="add">
</section>
</section>
<section class="display">
<div class="wrapper">
<h2 id="cityoutput"></h2>
<p id="description"></p>
<p id="temp"></p>
<p id="wind"></p>
</div>
</section>
</div>
</body>
</html>