-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
33 lines (27 loc) · 949 Bytes
/
main.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
<!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 href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="weather-container">
<h2>Weather Forecast Website</h2>
<h4> Created By T BarathKalyan</h4>
<input type="text" id="city" placeholder="Enter city">
<button onclick="getWeather()">Search</button>
<img id="weather-icon" alt="Weather Icon">
<div id="temp-div"></div>
<div id="weather-info"></div>
<div id="hourly-forecast"></div>
</div>
<div class="links">
<h2> Github</h2>
<a href="#"><i class='bx bxl-github'></i></a>
</div>
<script src="./script.js"></script>
</body>
</html>