├── styles.css ├── .codesandbox ├── template.json └── tasks.json ├── .eslintrc.json ├── package.json └── index.html /styles.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | text-decoration: underline; 3 | } 4 | -------------------------------------------------------------------------------- /.codesandbox/template.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "HTML + CSS", 3 | "description": "A template for HTML and CSS", 4 | "tags": ["html", "css"], 5 | "published": true, 6 | "runtime": "static" 7 | } 8 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "es2021": true 5 | }, 6 | "extends": ["eslint:recommended"], 7 | "parser": "babel-eslint", 8 | "parserOptions": { 9 | "ecmaVersion": 6, 10 | "sourceType": "module" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.codesandbox/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "setupTasks": [{ "name": "Install Dependencies", "command": "yarn install" }], 3 | "tasks": { 4 | "start": { 5 | "name": "start", 6 | "command": "yarn start", 7 | "runAtStart": true, 8 | "preview": { "port": 5000 } 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "html-css", 3 | "version": "1.0.0", 4 | "description": "A template for HTML and CSS", 5 | "main": "index.html", 6 | "scripts": { 7 | "start": "serve" 8 | }, 9 | "keywords": [ 10 | "html", 11 | "css" 12 | ], 13 | "author": "Ives van Hoorne", 14 | "license": "MIT", 15 | "devDependencies": { 16 | "serve": "11.2.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | HTML + CSS 8 | 9 | 10 | 11 |

This is a simple HTML + CSS template!

12 | 13 | 14 | --------------------------------------------------------------------------------