├── .vscode └── settings.json ├── Contributing.md ├── LICENSE ├── README.md ├── css ├── modal.css └── style.css ├── favicon.ico ├── feature ├── Feature.txt └── forecast.txt ├── images ├── celsius.svg ├── city-embankment-in-summer-season-vector.jpg ├── clear.png ├── clouds.png ├── cs-what-everyone-with-itp-should-know-1440x810.jpg ├── drizzle.png ├── footer.png ├── humidity.png ├── mist.png ├── rain.png ├── search.png ├── snow.png ├── wind.png └── woman-riding-bike-under-an-umbrella-during-the-rain-fall-rain-autumn-outdoor-activities-vector.jpg ├── index.html └── js ├── main.js └── modal.js /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/README.md -------------------------------------------------------------------------------- /css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/css/modal.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/css/style.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/favicon.ico -------------------------------------------------------------------------------- /feature/Feature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/feature/Feature.txt -------------------------------------------------------------------------------- /feature/forecast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/feature/forecast.txt -------------------------------------------------------------------------------- /images/celsius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/celsius.svg -------------------------------------------------------------------------------- /images/city-embankment-in-summer-season-vector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/city-embankment-in-summer-season-vector.jpg -------------------------------------------------------------------------------- /images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/clear.png -------------------------------------------------------------------------------- /images/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/clouds.png -------------------------------------------------------------------------------- /images/cs-what-everyone-with-itp-should-know-1440x810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/cs-what-everyone-with-itp-should-know-1440x810.jpg -------------------------------------------------------------------------------- /images/drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/drizzle.png -------------------------------------------------------------------------------- /images/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/footer.png -------------------------------------------------------------------------------- /images/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/humidity.png -------------------------------------------------------------------------------- /images/mist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/mist.png -------------------------------------------------------------------------------- /images/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/rain.png -------------------------------------------------------------------------------- /images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/search.png -------------------------------------------------------------------------------- /images/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/snow.png -------------------------------------------------------------------------------- /images/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/wind.png -------------------------------------------------------------------------------- /images/woman-riding-bike-under-an-umbrella-during-the-rain-fall-rain-autumn-outdoor-activities-vector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/images/woman-riding-bike-under-an-umbrella-during-the-rain-fall-rain-autumn-outdoor-activities-vector.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/index.html -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/js/main.js -------------------------------------------------------------------------------- /js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjainofficial/Weather-app/HEAD/js/modal.js --------------------------------------------------------------------------------