├── index.html ├── requirements.txt ├── script.js └── style.css /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sudhaanshuu/Practice/HEAD/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- 1 | alert("Hi Sudhanshu") -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } --------------------------------------------------------------------------------