-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.19 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Feels Like</title>
<link rel="stylesheet" href="main.css" />
<link rel="shortcut icon" type="image/x-icon" href="temperature.gif" />
</head>
<body>
<div class="app-wrap">
<header>
<input type="text" autocomplete="on" class="search-box" placeholder="Search for a city..." />
</header>
<main>
<section class="location">
<div class="city">City</div>
<div class="date">Date</div>
</section>
<div class="current">
<div class="temp">0<span>°c</span></div>
<div class="weather">Conditions</div>
<div class="hi-low">Hi°c / Low°c</div>
</div>
</main>
</div>
<script src="main.js"></script>
<footer>
<p><small><a href="https://github.com/DevShubam/feels-like"> Feels Like is open source</a></p>
<a href="https://www.flaticon.com/free-animated-icons/temperature" title="temperature animated icons">Temperature animated icons created by Freepik - Flaticon</a>
</footer
</body>
</html>