-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 965 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (30 loc) · 965 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>EL CLIMA DEL MUNDO</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>EL CLIMA DEL MUNDO</h1>
<form class="search-form">
<input type="text" placeholder="Escribe la ciudad" id="search-box">
<button type="submit" id="search-button">Buscar</button>
</form>
<div class="weather-info">
<div class="weather-details">
<div class="weather-icon-container">
<img class="weather-icon" id="weather-icon" src=""/>
</div>
<p class="city-name" id="city-name"></p>
<p class="date" id="date"></p>
<p class="temperature" id="temperature"></p>
<p class="description" id="description"></p>
<p class="humidity" id="humidity"></p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>