-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.21 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
<!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 rel="stylesheet" href="autocomplete.css">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="https://www.iconfinder.com/data/icons/weather-flat-14/64/weather02-512.png">
</head>
<body onload="loadFirstPage()">
<div id="main" class="dark">
<h1 onclick="loadFirstPage()">Clima APP | Weather 🥶</h1>
<form id="search-form" autocomplete="off">
<div class="autocomplete" style="width:300px;">
<input id="myInput" type="text" placeholder="Localidade...">
</div>
<input type="button" onclick="SendCityToSearch()" value="Procurar">
</form>
<div id="result">
</div>
<a href="https://github.com/NKKFu/weather-app" class="footer" style="margin: auto auto 0 auto">
Feito com 💖 no Github
</a>
</div>
<script src="autocomplete.js"></script>
<script src="index.js"></script>
</body>
<script>
autocomplete(document.getElementById("myInput"), [...citiesFullnames, ...stateFullnames]);
</script>
</html>