Project_Report_With_Images
Project_Report_With_Images
Overview:
The Weather App is a web-based application that provides real-time weather data for any city
entered by the user. It uses HTML, CSS, and JavaScript along with the OpenWeatherMap API.
Technologies Used:
- OpenWeatherMap API
Features:
How It Works:
Code Snippet:
fetch(`https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=API_KEY&units=metric`)
.then(data => {
Project Report
document.getElementById('description').innerText = data.weather[0].description;
});
Challenges:
- Creating an intuitive UI
Outcome:
An interactive and informative weather app with real-time data fetching and a user-friendly design.
Project Report
Overview:
The Personal Portfolio is a responsive, single-page website designed to showcase personal skills,
Technologies Used:
Sections:
- Home: Introduction
Features:
JavaScript Example:
navToggle.addEventListener('click', () => {
navLinks.classList.toggle('active');
});
Challenges:
- Ensuring accessibility
Outcome:
A well-structured, professional personal website that highlights individual strengths and work
samples.