-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 1.52 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="es">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/weather.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather App</title>
</head>
<body>
<div id="app">
<main class="main">
<header class="header">
<input
class="search-input"
type="text"
placeholder="Ciudad"
autocomplete="off"
/>
<div class="search-icon-container" id="search">
<svg
class="search-icon"
viewBox="0 0 16 16"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M11.35 6.675a4.675 4.675 0 1 1-9.35 0 4.675 4.675 0 0 1 9.35 0Zm-.715 5.374a6.675 6.675 0 1 1 1.414-1.414l3.658 3.658a1 1 0 0 1-1.414 1.414l-3.658-3.658Z"
></path>
</svg>
</div>
</header>
<section class="weather-container">
<div id="weather-app">
<article class="location-info" id="location"></article>
<article class="coordinates" id="coordinates"></article>
<hr />
<article class="weather-info" id="weather"></article>
</div>
<article id="message-error"></article>
</section>
</main>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>