├── .env.example ├── .gitignore ├── README.md ├── about.css ├── about.html ├── api_key ├── chatbot.gif ├── chatbot.html ├── clime.png ├── contact.css ├── contact.html ├── graph.png ├── index.html ├── logoo.png ├── script.js ├── style.css └── weather.png /.env.example: -------------------------------------------------------------------------------- 1 | YOUR API KEY = 2 | paste your api key here -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/README.md -------------------------------------------------------------------------------- /about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/about.css -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/about.html -------------------------------------------------------------------------------- /api_key: -------------------------------------------------------------------------------- 1 | /* windy api_key:H3MzWInDcItupZcD6PvvOdQ92hG6mNKw; 2 | API_key geocode:931add65f661b62e41a10eb706475ea9; */ 3 | 4 | -------------------------------------------------------------------------------- /chatbot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/chatbot.gif -------------------------------------------------------------------------------- /chatbot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/chatbot.html -------------------------------------------------------------------------------- /clime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/clime.png -------------------------------------------------------------------------------- /contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/contact.css -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/contact.html -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/graph.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/index.html -------------------------------------------------------------------------------- /logoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/logoo.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/style.css -------------------------------------------------------------------------------- /weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohit5Upadhyay/WeatherApplication/HEAD/weather.png --------------------------------------------------------------------------------