-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.72 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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>WeatherBox</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap'>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<meta name="ahrefs-site-verification" content="7ab0a68e05075caacea14ec582e20addd6bc7aee74920f605dcb35fed3660ef2">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="api">
<div class="container">Search by Using a City Name (Example: Chicago) Or a Comma-Seperated City Name Along With The Country Code (Example: Chicago,US)
</div>
</div>
<section class="top-banner">
<div class="container">
<img src="./apple-touch-icon.png"></img>
<h1 class="heading">WeatherBox </h1>
<form>
<input type="text" placeholder="Search for a Place..." autofocus>
<button type="submit">GO!</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>Copyright © WeatherBox. Made with <span>❤</span> by <a href="https://complabs.in" target="_blank">The Comp Labs Team</a>.
<br>
Thanks to <a href="https://codepen.io/tutsplus/pen/gObLaEP" target="_blank">@tutsplus</a> on CodePen for This.
<br>
<a href="https://www.flaticon.com/free-icons/weather" title="weather icons">WeatherBox Icon Created by Freepik - Flaticon</a>
</small>
</div>
</footer>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>