-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 984 Bytes
/
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
<!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="style.css" />
</head>
<body>
<h1>Weather App</h1>
<div id="App">
<div id="Form_Card">
<form id="Form">
<input type="text" id="City" placeholder="Enter City Name" />
<button type="submit">Search</button>
</form>
</div>
<div id="Weather_Card" style="display: none;">
<h2 id="City_Name">City Name</h2>
<h6 id="Country">Country</h6>
<h3 id="Temperature">Temperature</h3>
<p id="Description">Description</p>
<p id="Humidity">Humidity</p>
<p id="Wind_Speed">Wind Speed</p>
</div>
<h2 id="Invalid" style="display: none;">Invalid Adress</h2>
</div>
<script type="module" src="script.js"></script>
</body>
</html>