🌦 WeatherApp
A sleek and simple weather application built using HTML, CSS, and JavaScript. This app provides current weather updates for cities around the world by utilizing public APIs.
Try the live version here: WeatherApp Live Demo
https://madhumithakv.github.io/WheatheApp/
🚀 Features
Fetches real-time weather data for any city. Displays temperature, weather conditions, and location details. User-friendly interface with responsive design. Error handling for invalid city inputs.
🛠️ Technologies Used
HTML: Structure of the web app. CSS: Styling and layout for a modern UI. JavaScript: Fetching weather data and handling user interactions.
🌐 API Used
This app uses the OpenWeather API to fetch weather data. Get your API key from OpenWeather.
Add your API key in the JavaScript file where the API request is made.
javascript
Copy code
const apiKey = 'YOUR_API_KEY';
const apiUrl = https://api.openweathermap.org/data/2.5/weather?q={city}&appid=${apiKey}
;