-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweatherApp.html
31 lines (30 loc) · 963 Bytes
/
weatherApp.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
<!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="weatherApp.css" />
<title>Document</title>
</head>
<body>
<div class="content">
<div class="input-section">
<input
type="text"
id="city-name-input"
placeholder="Enter The City name"
/>
<button id="confirm-city-button">Confirm</button>
</div>
<div id="output">
<h1 class="warning-paragraph"></h1>
<p class="weather-info name-of-city">Location:</p>
<p class="weather-info temprature">Temprature:</p>
<p class="weather-info wind-speed">Wind speed:</p>
<p class="weather-info clouds">Clouds status:</p>
</div>
</div>
<script src="weatherApp.js" type="module"></script>
</body>
</html>