├── .github ├── FUNDING.yml └── workflows │ └── LinkChecker.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.html └── list ├── CONTRIBUTING.md ├── README.md └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: markodenic 2 | -------------------------------------------------------------------------------- /.github/workflows/LinkChecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/.github/workflows/LinkChecker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/index.html -------------------------------------------------------------------------------- /list/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/list/CONTRIBUTING.md -------------------------------------------------------------------------------- /list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/list/README.md -------------------------------------------------------------------------------- /list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/web-development-resources/HEAD/list/index.html --------------------------------------------------------------------------------