This weather application is a simple web app that allows users to view weather information. After entering a location name, the application fetches real-time weather data using the OpenWeatherMap API and displays it on the screen.
You can access the live version of the project here.
- Enter a location name in the "Enter Your Location" text box.
- Click the "Search" button to display weather information.
- When weather information is successfully retrieved, it will be displayed on the screen. If the location is not found, an appropriate error message will be shown.
- HTML
- CSS
- JavaScript
This application uses the OpenWeatherMap API. To use your own API key, update the apiKey
variable in the app.js
file.
const apiKey = "YOUR_API_KEY";