-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
49 lines (41 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
38
39
40
41
42
43
44
45
46
47
48
49
<!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>webpack boiler-plate</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/animate.min.css">
</head>
<body>
<div class="main">
<header>
<div class="set-temp">
<input type="checkbox" value="none" id="set-temp" name="check" />
<label for="set-temp"></label>
</div>
<h1 class="welcome ">Welcome to the
<br>
<span>Weather</span> App
</h1>
</header>
<div class="container-search">
<form id="searchForm">
<input type="text" id="cityInput" placeholder="Enter your city..." autofocus>
</form>
</div>
<div class="weather-info animated" id="outPut">
<div class="div-info">
<div class="icon-div" id="icon-div"></div>
<div class="details" id="details-div"></div>
</div>
<div class="fore-cast" id="outPutForecast"></div>
</div>
<div class="footer">
<footer>
<p>@by Mário Rodeghiero</p>
</footer>
</div>
</div>
</body>
</html>