-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (61 loc) · 2.51 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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<title>ClimApp - JavaScript</title>
</head>
<body>
<div class="wrapper">
<header><i class="bx bx-left-arrow-alt"></i>ClimApp</header>
<section class="input-part">
<p class="info-txt"></p>
<input type="text" placeholder="Ingresar nombre de la ciudad" spellcheck="false" required>
<div class="separator"></div>
<button>Usar la ubicación del dispositivo</button>
</section>
<section class="weather-part">
<img src="#" alt="Weather Icon">
<div class="temp">
<span class="numb">_</span>
<span class="deg">°</span>C
</div>
<div class="weather">_ _</div>
<div class="location">
<i class="bx bx-map"></i>
<span>_, _</span>
</div>
<div class="bottom-details">
<div class="column feels">
<i class="bx bxs-thermometer"></i>
<div class="details">
<div class="temp">
<span class="numb-2">_</span>
<span class="deg">°</span>C
</div>
<p>S.T.</p>
</div>
</div>
<div class="column humidity">
<i class="bx bxs-droplet-half"></i>
<div class="details">
<span>_</span>
<p>Humedad</p>
</div>
</div>
</div>
</section>
</div>
<div class="social">
<a href="https://github.com/emanuelhg/" target="_blank"><i class="bx bxl-github bx-md bx-burst-hover"></i></a>
<a href="https://www.linkedin.com/in/emanuel-guzzetti/" target="_blank"><i class="bx bxl-linkedin bx-md bx-burst-hover"></i></a>
</div>
<script src="script.js"></script>
</body>
</html>