From 8e9c4ac8364852b8ccd9b9066c13640aea8073da Mon Sep 17 00:00:00 2001
From: Israel Huerta
Date: Fri, 28 Mar 2025 16:43:29 -0600
Subject: [PATCH 01/29] Add launch configuration for Microsoft Edge and create
initial HTML page
---
.vscode/launch.json | 46 +++++++++++++++++++++++++++++++++++++++++++++
01-test/index.html | 17 +++++++++++++++++
2 files changed, 63 insertions(+)
create mode 100644 .vscode/launch.json
create mode 100644 01-test/index.html
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 000000000..3bc8e2a56
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,46 @@
+{
+ "configurations": [
+ {
+ "type": "pwa-msedge",
+ "name": "Launch Microsoft Edge",
+ "request": "launch",
+ "runtimeArgs": ["--remote-debugging-port=9222"],
+ "url": "c:\\Users\\israe\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.8\\out\\startpage\\index.html",
+ "presentation": {
+ "hidden": true
+ }
+ },
+ {
+ "type": "pwa-msedge",
+ "name": "Launch Microsoft Edge in headless mode",
+ "request": "launch",
+ "runtimeArgs": ["--headless", "--remote-debugging-port=9222"],
+ "url": "c:\\Users\\israe\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.8\\out\\startpage\\index.html",
+ "presentation": {
+ "hidden": true
+ }
+ },
+ {
+ "type": "vscode-edge-devtools.debug",
+ "name": "Open Edge DevTools",
+ "request": "attach",
+ "url": "c:\\Users\\israe\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.8\\out\\startpage\\index.html",
+ "presentation": {
+ "hidden": true
+ }
+ }
+ ],
+ "compounds": [
+ {
+ "name": "Launch Edge Headless and attach DevTools",
+ "configurations": [
+ "Launch Microsoft Edge in headless mode",
+ "Open Edge DevTools"
+ ]
+ },
+ {
+ "name": "Launch Edge and attach DevTools",
+ "configurations": ["Launch Microsoft Edge", "Open Edge DevTools"]
+ }
+ ]
+}
diff --git a/01-test/index.html b/01-test/index.html
new file mode 100644
index 000000000..46003c3b0
--- /dev/null
+++ b/01-test/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+ My First website
+
+
+
+ Hello World!
+ My name is Israel Huerta F.
+ This is my first website .
+
+
+
+install google-chrome-stable_current_amd64.deb in ubuntu 20.04.6 LTS WSL
\ No newline at end of file
From 7fdcc5079726348f72975de2006f46d113d895e7 Mon Sep 17 00:00:00 2001
From: Israel Huerta
Date: Fri, 28 Mar 2025 16:51:08 -0600
Subject: [PATCH 02/29] Add initial HTML structure for HTML fundamentals
---
starter/02-HTML-Fundamentals/index.html | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 starter/02-HTML-Fundamentals/index.html
diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html
new file mode 100644
index 000000000..55ac48808
--- /dev/null
+++ b/starter/02-HTML-Fundamentals/index.html
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ The Basic Language of the Web: HTML
+
+
+
+ The Basic Language of the Web: HTML
+ The Basic Language of the Web: HTML
+ The Basic Language of the Web: HTML
+ The Basic Language of the Web: HTML
+ The Basic Language of the Web: HTML
+ The Basic Language of the Web: HTML
+
+
+
\ No newline at end of file
From 87136011f2970fd44425331c67caaa7393452d3f Mon Sep 17 00:00:00 2001
From: Israel Huerta
Date: Fri, 28 Mar 2025 17:09:42 -0600
Subject: [PATCH 03/29] Revise index.html to enhance content and structure for
HTML fundamentals
---
starter/02-HTML-Fundamentals/index.html | 56 +++++++++++++++++++++++--
1 file changed, 53 insertions(+), 3 deletions(-)
diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html
index 55ac48808..15b49fd08 100644
--- a/starter/02-HTML-Fundamentals/index.html
+++ b/starter/02-HTML-Fundamentals/index.html
@@ -8,12 +8,62 @@
- The Basic Language of the Web: HTML
+
+
+ 📘 The Code Magazine
+
+ Posted by Laura Jones on Monday, June 21st 2027
+
+ The Basic Language of the Web: HTML
+
+ 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.
+
+ In HTML, each element is made up of 3 parts:
+
+
+ - The opening tag
+ - The closing tag
+ - The actual element
+
+
+ Why should you learn HTML?
+
+
+ The opening tag
+ The closing tag
+ The actual element
+ You can learn more at the MDN Web Docs.
+
+ Why should you learn HTML?
+
+ 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!