├── .gitattributes ├── .vscode └── settings.json ├── index.html └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-dev-dragon/Adidas/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-dev-dragon/Adidas/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-dev-dragon/Adidas/HEAD/style.css --------------------------------------------------------------------------------