├── icons ├── 01d.png ├── 01n.png ├── 02d.png ├── 02n.png ├── 03d.png ├── 03n.png ├── 04d.png ├── 04n.png ├── 09d.png ├── 09n.png ├── 10d.png ├── 10n.png ├── 11d.png ├── 11n.png ├── 13d.png ├── 13n.png ├── 50d.png ├── 50n.png └── unknown.png ├── image ├── clear.jpg ├── cloud.jpg ├── haze.jpg ├── rain.jpg ├── snow.jpg └── meteor.jpeg ├── README.md ├── LICENSE ├── index.html ├── style.css └── script.js /icons/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/01d.png -------------------------------------------------------------------------------- /icons/01n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/01n.png -------------------------------------------------------------------------------- /icons/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/02d.png -------------------------------------------------------------------------------- /icons/02n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/02n.png -------------------------------------------------------------------------------- /icons/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/03d.png -------------------------------------------------------------------------------- /icons/03n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/03n.png -------------------------------------------------------------------------------- /icons/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/04d.png -------------------------------------------------------------------------------- /icons/04n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/04n.png -------------------------------------------------------------------------------- /icons/09d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/09d.png -------------------------------------------------------------------------------- /icons/09n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/09n.png -------------------------------------------------------------------------------- /icons/10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/10d.png -------------------------------------------------------------------------------- /icons/10n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/10n.png -------------------------------------------------------------------------------- /icons/11d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/11d.png -------------------------------------------------------------------------------- /icons/11n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/11n.png -------------------------------------------------------------------------------- /icons/13d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/13d.png -------------------------------------------------------------------------------- /icons/13n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/13n.png -------------------------------------------------------------------------------- /icons/50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/50d.png -------------------------------------------------------------------------------- /icons/50n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/50n.png -------------------------------------------------------------------------------- /image/clear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/image/clear.jpg -------------------------------------------------------------------------------- /image/cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/image/cloud.jpg -------------------------------------------------------------------------------- /image/haze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/image/haze.jpg -------------------------------------------------------------------------------- /image/rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/image/rain.jpg -------------------------------------------------------------------------------- /image/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/image/snow.jpg -------------------------------------------------------------------------------- /icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/icons/unknown.png -------------------------------------------------------------------------------- /image/meteor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saket-v37/Weather_App/HEAD/image/meteor.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Weather_App 2 | 3 | Weather app shows the basic weather information with the help of an api. 4 | 5 | Weather app which shows the current weather information from the API. It shows the Weather status Icon, Searched City and Country name, Day and Date, 6 | Temperature value(°c), Weather description, Minimum and Maximum Temperature and Wind Speed. 7 | 8 | When the user clicks on the temperature value, it gets converted into Fahrenheit. 9 | 10 | # Technology: 11 | HTML 12 | CSS 13 | Javascript 14 | OpenWeatherMap api 15 | FontAwesome 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Saket Verma 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |