├── README.md ├── index.html ├── malmo.css ├── package.json └── sandbox.config.json /README.md: -------------------------------------------------------------------------------- 1 | # HTML_CSS_BasicDemo 2 | Created with CodeSandbox 3 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/HTML_CSS_BasicDemo/HEAD/index.html -------------------------------------------------------------------------------- /malmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/HTML_CSS_BasicDemo/HEAD/malmo.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/HTML_CSS_BasicDemo/HEAD/package.json -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "static" 3 | } 4 | --------------------------------------------------------------------------------