Skip to content

Commit

Permalink
🚀 Launch
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Jan 18, 2023
1 parent 9bef6f6 commit 3cbf8ef
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 15 deletions.
20 changes: 18 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,24 @@
},
"vscode": {
"extensions": [
"ms-vscode.live-server"
]
"mkaufman.HTMLHint",
"esbenp.prettier-vscode",
"christian-kohler.path-intellisense"
],
"settings": {
"editor.formatOnSave": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}
},
"postCreateCommand": "npm install -g --no-package-lock live-server",
"postAttachCommand": "live-server --no-browser --port=8080",
"portsAttributes": {
"8080": {
"label": "Application",
"onAutoForward": "openPreview"
}
}
}
23 changes: 23 additions & 0 deletions blank.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css"
/>
<title>Blank Page</title>
</head>
<body>
<header>
<!-- Header content -->
</header>
<main>
<!-- Main content -->
</main>
<footer>
<!-- Footer content -->
</footer>
</body>
</html>
37 changes: 24 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,36 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css"
/>
<title>Hello, world!</title>
</head>
<body>
<header>
<!-- Header content -->
<hgroup>
<h1>Hello, world!</h1>
<h2>This website uses <a href="https://picocss.com/examples/classless/" target="_blank">Pico.css classless</a>, a CSS framework that uses only HTML tags for styling.</h2>
</hgroup>
<a href="https://picocss.com/docs/" target="_blank"><button>Click here for more information about Pico.css</button></a>
<!-- Header content -->
<hgroup>
<h1>Hello, world!</h1>
<h2>
This website uses
<a href="https://picocss.com/examples/classless/" target="_blank">
Pico.css classless
</a>
, a CSS framework that uses only HTML tags for styling.
</h2>
</hgroup>
<a href="https://picocss.com/docs/" target="_blank">
<button>Click here for more information about Pico.css</button>
</a>
</header>
<main>
<!-- Main content -->
<!-- Main content -->
</main>
<footer>
<!-- Footer content -->
<!-- Footer content -->
</footer>
</body>
</html>
</html>

0 comments on commit 3cbf8ef

Please sign in to comment.