-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (68 loc) · 3.02 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en" data-theme="Light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Weather</title>
<link rel="stylesheet" href="style.css">
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital@1&family=Mukta:wght@200&family=Pacifico&display=swap"
rel="stylesheet">
</head>
<body>
<article>
<header>
<nav>
<div id="ContainerButtons">
<button id="Theme">
<img src="imagenes/sun.svg" alt="Tema" id="DarkOrLight">
</button>
<button id="Unit">
<img src="imagenes/degree-farenheit.svg" alt="Unit Tempeture" id="FarenheitOrCelcius">
</button>
</div>
<form id="Search">
<input type="text" placeholder="City" id="InputCity" spellcheck="false" autocomplete="off">
<input type="image" src="imagenes/MagnifiyingGlass.svg" id="ButtonSubmit">
</form>
</nav>
</header>
<main>
<section id="GeneralInformation">
<img src="imagenes/clear.png" id="Image">
<div>
<P id="temperature" class="information"></P>
<P id="Climate" class="information"> </P>
</div>
</section>
<section id="SpecifikIformation">
<figure>
<img src="imagenes/thermometer-full.svg" alt="Image temperature" class="IconMoreInformation">
<figcaption>
<p id="Result"><strong class="highlight">Temperature</strong> </p>
</figcaption>
</figure>
<figure>
<img src="imagenes/compass.svg" alt=" Image Compass" class="IconMoreInformation">
<figcaption>
<p id="AcronymCountry"><strong class="highlight">Country</strong></p>
</figcaption>
</figure>
<figure>
<img src="imagenes/wind.svg" alt="Image Wind" class="IconMoreInformation">
<figcaption>
<p id="UnitWind"><strong class="highlight">Wind</strong> </p>
</figcaption>
</figure>
<figure>
<img src="imagenes/umbrella.svg" alt=" Image Umbrella" class="IconMoreInformation">
<figcaption>
<p id="UnitHumidity"><strong class="highlight">Humidity</strong> </p>
</figcaption>
</figure>
</section>
</main>
</article>
<script src="logical.js"></script>
</body>
</html>