├── .github └── workflows │ └── linters.yml ├── .gitignore ├── .hintrc ├── .stylelintrc.json ├── README.md ├── index.html ├── package.json └── style.css /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divinecharlotte/hello--microverse/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test.md -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divinecharlotte/hello--microverse/HEAD/.hintrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divinecharlotte/hello--microverse/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divinecharlotte/hello--microverse/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divinecharlotte/hello--microverse/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divinecharlotte/hello--microverse/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .title { 2 | color: red; 3 | } 4 | --------------------------------------------------------------------------------