A simple and responsive Weather Web Application built using HTML, CSS, and JavaScript. This app allows users to search for real-time weather information for any city using a public weather API.
🌤️ Features
🔍 Search weather by city name
🌡️ Displays current temperature and weather condition
💨 Shows additional details like humidity and wind speed
🎨 Clean and responsive UI
⚡ Fetches real-time data using JavaScript
HTML5 – structure
CSS3 – styling and layout
JavaScript (ES6) – logic and API handling
Weather API – for live weather data
No build tools or package managers required.
1️⃣ Clone the repository
git clone https://github.com/RuntimeTerror001/Weather-Web-Application.git
cd Weather-Web-Application
2️⃣ Open in browser
Simply open the index.html file in your browser:
Double-click index.html
or open with Live Server in VS Code (recommended)
🔑 API Key Setup (If Required)
If your project uses a weather API like OpenWeatherMap:
Create a free API key from the weather API provider
Add your API key inside your JavaScript file:
const API_KEY = "YOUR_API_KEY_HERE";
Contributions are welcome!
Fork the repository
Create a new branch (feature/awesome-feature)
Commit your changes
Open a Pull Request
Please make sure to update tests as appropriate.
This project is licensed under the MIT License. See the LICENSE file for more information.
Enter a city name in the search input
Click the search button
View the current weather details
Try different cities to check weather conditions
Built with ❤️ by RuntimeTerror001