From 537605d7a8ac886477caec0944bf258002709f02 Mon Sep 17 00:00:00 2001
From: Jev
Date: Thu, 11 Jan 2024 22:11:36 +0000
Subject: [PATCH 01/37] add devcontainer
---
.devcontainer/devcontainer.json | 34 +++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
create mode 100644 .devcontainer/devcontainer.json
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 000000000..e548c461e
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,34 @@
+// For format details, see https://aka.ms/devcontainer.json. For config options, see the
+// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
+{
+ "name": "Ubuntu",
+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
+ "image": "mcr.microsoft.com/devcontainers/base:jammy",
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "formulahendry.auto-close-tag",
+ "formulahendry.auto-rename-tag",
+ "naumovs.color-highlight",
+ "kisstkondoros.vscode-gutter-preview",
+ "esbenp.prettier-vscode",
+ "ritwickdey.LiveServer"
+ ]
+ }
+ }
+
+ // Features to add to the dev container. More info: https://containers.dev/features.
+ // "features": {},
+
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
+ // "forwardPorts": [],
+
+ // Use 'postCreateCommand' to run commands after the container is created.
+ // "postCreateCommand": "uname -a",
+
+ // Configure tool-specific properties.
+ // "customizations": {},
+
+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
+ // "remoteUser": "root"
+}
From 02661386e039fd278a3d48c0dd2600ffc863b54b Mon Sep 17 00:00:00 2001
From: Jev
Date: Thu, 11 Jan 2024 22:15:21 +0000
Subject: [PATCH 02/37] workspace settings
---
.vscode/settings.json | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 .vscode/settings.json
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 000000000..9e8a2a249
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,6 @@
+{
+ "files.autoSave": "onFocusChange",
+ "editor.formatOnSave": true,
+ "editor.wordWrap": "on",
+ "editor.tabSize": 2
+}
From df3cccf9e25267c5270f4c4921e7cb2e02df4c03 Mon Sep 17 00:00:00 2001
From: Jev
Date: Thu, 11 Jan 2024 22:39:26 +0000
Subject: [PATCH 03/37] add scratch
---
starter/01-Scratch/index.html | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 starter/01-Scratch/index.html
diff --git a/starter/01-Scratch/index.html b/starter/01-Scratch/index.html
new file mode 100644
index 000000000..bab1190f9
--- /dev/null
+++ b/starter/01-Scratch/index.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+ Hello
+
+
+
+
Hello World
+
Yes.
+
+
+
From 9b362db1c0033159a62e685cfe64d14aae393273 Mon Sep 17 00:00:00 2001
From: Jev
Date: Thu, 18 Jan 2024 21:37:43 +0000
Subject: [PATCH 04/37] css selectors
---
starter/03-CSS-Fundamentals/index.html | 241 +++++++++++--------------
starter/03-CSS-Fundamentals/style.css | 16 ++
2 files changed, 126 insertions(+), 131 deletions(-)
create mode 100644 starter/03-CSS-Fundamentals/style.css
diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html
index df8a623a8..23cc05403 100644
--- a/starter/03-CSS-Fundamentals/index.html
+++ b/starter/03-CSS-Fundamentals/index.html
@@ -1,12 +1,14 @@
-
-
- The Basic Language of the Web: HTML
-
-
-
+
+
📘 The Code Magazine
+
+
+
+
+
-
📘 The Code Magazine
-
-
+
The Basic Language of the Web: HTML
+
+
+
+
Posted by Laura Jones on Monday, June 21st 2027
+
+
-
-
-
The Basic Language of the Web: HTML
-
-
-
-
Posted by Laura Jones on Monday, June 21st 2027
-
-
-
-
-
- All modern websites and web applications are built using three
- fundamental
- technologies: HTML, CSS and JavaScript. These are the languages of the
- web.
-
-
-
- In this post, let's focus on HTML. We will learn what HTML is all about,
- and why you too should learn it.
-
-
-
What is HTML?
-
- HTML stands for HyperText
- Markup Language. It's a markup
- language that web developers use to structure and describe the content
- of a webpage (not a programming language).
-
-
- HTML consists of elements that describe different types of content:
- paragraphs, links, headings, images, video, etc. Web browsers understand
- HTML and render HTML code as websites.
-
- There are countless reasons for learning the fundamental language of the
- web. Here are 5 of them:
-
-
-
-
To be able to use the fundamental web dev language
-
- To hand-craft beautiful websites instead of relying on tools like
- Worpress or Wix
-
-
To build web applications
-
To impress friends
-
To have fun 😃
-
-
-
Hopefully you learned something new here. See you next time!
-
-
-
-
-
-
+
+ All modern websites and web applications are built using three
+ fundamental
+ technologies: HTML, CSS and JavaScript. These are the languages of the
+ web.
+
+
+
+ In this post, let's focus on HTML. We will learn what HTML is all about,
+ and why you too should learn it.
+
+
+
What is HTML?
+
+ HTML stands for HyperText
+ Markup Language. It's a markup
+ language that web developers use to structure and describe the content
+ of a webpage (not a programming language).
+
+
+ HTML consists of elements that describe different types of content:
+ paragraphs, links, headings, images, video, etc. Web browsers understand
+ HTML and render HTML code as websites.
+