-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 1.34 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
<!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>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Finder</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<h1>Find Weather in any town in the world</h1>
<div class="search-bar">
<input id="input" type="text" placeholder="Enter the town name of your city">
<br>
<button onclick=search()>Search</button>
</div>
<div class="weather-info">
<img id="icon" src="https://cdn2.iconfinder.com/data/icons/weather-flat-14/64/weather02-512.png"
alt="Weather Icon" class="weather-icon">
<div id="temp" class="temperature">00°C</div>
<div id="town" class="location">Town is here,</div>
<div id="date" class="date">Date will display here</div>
</div>
</div>
<div id="cardContainer" class="card-container">
</div>
</body>
<script src="js/main.js"></script>
</html>