-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
52 lines (52 loc) · 1.27 KB
/
popup.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body{
width: 250px;
height: 250px;
background-color: cornsilk;
}
.heading{
text-align: center;
}
input[type="text"] {
display: block;
margin : 0 auto;
text-align: center;
}
button {
margin:0 auto;
display:block;
}
</style>
<body>
<section class="top-banner">
<div class="container">
<h1 class="heading">W for Weather</h1>
<form>
<input type="text" placeholder="Search for a city" autofocus>
<button type="submit">SUBMIT</button>
<span class="msg"></span>
</form>
</div>
</section>
<section class="ajax-section">
<div class="container">
<ul class="cities"></ul>
</div>
</section>
<footer class="page-footer">
<div class="container">
<small>Made by <a href="https://gaurav1997.wixsite.com/resume" target="_blank">Gaurav Mazumder</a>
</small>
</div>
</footer>
<br/>
</body>
<script src="popup.js"></script>
</html>