-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.72 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="stylesheet" href="cs.css">
</head>
<body>
<div class="container">
<h1>Weather App</h1>
<div class="search-container">
<input type="text" id="cityInput" placeholder="Enter city name..." />
<button onclick="getWeather()">Search</button>
</div>
<div class="weather-card" id="weatherCard">
<div class="weather-header">
<div class="city-name" id="cityName">City Name</div>
<div class="temperature" id="temperature">--°C</div>
</div>
<div class="weather-details">
<div class="weather-detail">
<span class="detail-label">Feels Like</span>
<span class="detail-value" id="feelsLike">--°C</span>
</div>
<div class="weather-detail">
<span class="detail-label">Humidity</span>
<span class="detail-value" id="humidity">--%</span>
</div>
<div class="weather-detail">
<span class="detail-label">Wind Speed</span>
<span class="detail-value" id="windSpeed">-- m/s</span>
</div>
<div class="weather-detail">
<span class="detail-label">Description</span>
<span class="detail-value" id="description">--</span>
</div>
</div>
</div>
<div class="error-message" id="errorMessage"></div>
</div>
<script src="ts.js"></script>
</body>
</html>