0% found this document useful (0 votes)
12 views1 page

App HTML

Html code weather forecasting application

Uploaded by

jayanthi.vm2003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

App HTML

Html code weather forecasting application

Uploaded by

jayanthi.vm2003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

12/1/24, 6:28 PM app.

html

1
2
3 <!DOCTYPE html>
4 <html>
5 <head>
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width,initial-scale=1.0">
8 <title>my website</title>
9 <link rel="stylesheet" href="app.css">
10 </head>
11 <body>
12 <div class="container">
13 <h1> Weather App</h1>
14 <div class="search-container">
15 <input type="text" id="city-input" placeholder="Enter city name"/>
<br><br>
16 <button id="get-weather-btn">Get Weather</button>
17 </div><br><br>
18 <div id="weather-info" class="weather-info">
19 <p id="city-name"></p>
20 <p id="weather-description"></p>
21 <p id="temperature"></p>
22 <p id="humidity"></p>
23 <p id="wind-speed"></p>
24 </div>
25 </div>
26 </div>
27 <script src="app.js"></script>
28 </body>
29 </html>
30
31
32
33
34
35
36
37
38

localhost:4649/?mode=htmlmixed 1/1

You might also like