-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather API</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main>
<div class="main-container">
<div class="status">
<h1>Bienvenidos</h1>
<h2>Ingresá abajo la ubicacion</h2>
</div>
<form>
<input type="text" placeholder="Ingresá la ubicación" name="location" class="location">
<button type="submit" class="send-location">
<ion-icon name="arrow-forward-circle-outline" class="icon"></ion-icon>
</button>
</form>
</div>
</main>
<footer>
<span>Powered by <a href="https://www.weatherapi.com/" title="Weather API">WeatherAPI.com</a></span>
</footer>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<script src="main.js"></script>
</body>
</html>