From f52bd5ecc654ad35b01d596f915e1348c702ed5a Mon Sep 17 00:00:00 2001
From: Milton Ivan Diaz Torres
Date: Wed, 12 Oct 2022 18:19:30 +0800
Subject: [PATCH 1/4] These are my modifications
---
starter/01-TEST/index.html | 16 ++++++++++++++++
starter/02-HTML-Fundamentals/index.html | 12 ++++++++++++
2 files changed, 28 insertions(+)
create mode 100644 starter/01-TEST/index.html
create mode 100644 starter/02-HTML-Fundamentals/index.html
diff --git a/starter/01-TEST/index.html b/starter/01-TEST/index.html
new file mode 100644
index 000000000..02a0bc290
--- /dev/null
+++ b/starter/01-TEST/index.html
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+ My first webpage
+
+
+
+
Hello, world!
+
My name is Milton, and this is my very first webpage :D
+
+
+
\ No newline at end of file
diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html
new file mode 100644
index 000000000..74e7a48fe
--- /dev/null
+++ b/starter/02-HTML-Fundamentals/index.html
@@ -0,0 +1,12 @@
+
+
+
+
+ The Basic Language of the Web: HTML
+
+
+
+
The Basic Language of the Web: HTML
+
+
+
\ No newline at end of file
From b07eeb78df315cedd023207acb2162cfd3311c19 Mon Sep 17 00:00:00 2001
From: Milton Ivan Diaz Torres
Date: Wed, 12 Oct 2022 18:24:48 +0800
Subject: [PATCH 2/4] My changes today
---
starter/02-HTML-Fundamentals/index.html | 63 ++++++++++++++++++++++++-
1 file changed, 62 insertions(+), 1 deletion(-)
diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html
index 74e7a48fe..0c8f3c804 100644
--- a/starter/02-HTML-Fundamentals/index.html
+++ b/starter/02-HTML-Fundamentals/index.html
@@ -1,12 +1,73 @@
-
+
+
The Basic Language of the Web: HTML
+
+
+
📘 The Code Magazine
+
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.
+
+
+
In HTML, each element is made up of 3 parts:
+
+
+
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!
+
\ No newline at end of file
From 5cd2a811b3f9818883193414ae7d429add5a56b5 Mon Sep 17 00:00:00 2001
From: Milton Ivan Diaz Torres
Date: Mon, 17 Oct 2022 21:49:19 +0800
Subject: [PATCH 3/4] October 17
---
starter/02-HTML-Fundamentals/blog.html | 17 ++
.../challenge2/index.html | 39 +++
.../{ => img}/challenges.jpg | Bin
.../{ => img}/laura-jones.jpg | Bin
.../{ => img}/post-img.jpg | Bin
.../{ => img}/related-1.jpg | Bin
.../{ => img}/related-2.jpg | Bin
.../{ => img}/related-3.jpg | Bin
starter/02-HTML-Fundamentals/index.html | 150 +++++++----
starter/03-CSS-Fundamentals/index.html | 247 ++++++++----------
starter/03-CSS-Fundamentals/style.css | 121 +++++++++
11 files changed, 391 insertions(+), 183 deletions(-)
create mode 100644 starter/02-HTML-Fundamentals/blog.html
create mode 100644 starter/02-HTML-Fundamentals/challenge2/index.html
rename starter/02-HTML-Fundamentals/{ => img}/challenges.jpg (100%)
rename starter/02-HTML-Fundamentals/{ => img}/laura-jones.jpg (100%)
rename starter/02-HTML-Fundamentals/{ => img}/post-img.jpg (100%)
rename starter/02-HTML-Fundamentals/{ => img}/related-1.jpg (100%)
rename starter/02-HTML-Fundamentals/{ => img}/related-2.jpg (100%)
rename starter/02-HTML-Fundamentals/{ => img}/related-3.jpg (100%)
create mode 100644 starter/03-CSS-Fundamentals/style.css
diff --git a/starter/02-HTML-Fundamentals/blog.html b/starter/02-HTML-Fundamentals/blog.html
new file mode 100644
index 000000000..a225a4982
--- /dev/null
+++ b/starter/02-HTML-Fundamentals/blog.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+ BLOG
+
+
+
+
BLOG
+ Home
+
+
+
+
\ No newline at end of file
diff --git a/starter/02-HTML-Fundamentals/challenge2/index.html b/starter/02-HTML-Fundamentals/challenge2/index.html
new file mode 100644
index 000000000..e0b730f26
--- /dev/null
+++ b/starter/02-HTML-Fundamentals/challenge2/index.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
Converse Chuck Taylor All Star Low Top
+
+
+
$65.00
+
Free shipping
+
Ready to dress up or down, these classic canvas Chucks are an everyday wardrobe staple
+
+
+
+
+
+
\ No newline at end of file
diff --git a/starter/02-HTML-Fundamentals/challenges.jpg b/starter/02-HTML-Fundamentals/img/challenges.jpg
similarity index 100%
rename from starter/02-HTML-Fundamentals/challenges.jpg
rename to starter/02-HTML-Fundamentals/img/challenges.jpg
diff --git a/starter/02-HTML-Fundamentals/laura-jones.jpg b/starter/02-HTML-Fundamentals/img/laura-jones.jpg
similarity index 100%
rename from starter/02-HTML-Fundamentals/laura-jones.jpg
rename to starter/02-HTML-Fundamentals/img/laura-jones.jpg
diff --git a/starter/02-HTML-Fundamentals/post-img.jpg b/starter/02-HTML-Fundamentals/img/post-img.jpg
similarity index 100%
rename from starter/02-HTML-Fundamentals/post-img.jpg
rename to starter/02-HTML-Fundamentals/img/post-img.jpg
diff --git a/starter/02-HTML-Fundamentals/related-1.jpg b/starter/02-HTML-Fundamentals/img/related-1.jpg
similarity index 100%
rename from starter/02-HTML-Fundamentals/related-1.jpg
rename to starter/02-HTML-Fundamentals/img/related-1.jpg
diff --git a/starter/02-HTML-Fundamentals/related-2.jpg b/starter/02-HTML-Fundamentals/img/related-2.jpg
similarity index 100%
rename from starter/02-HTML-Fundamentals/related-2.jpg
rename to starter/02-HTML-Fundamentals/img/related-2.jpg
diff --git a/starter/02-HTML-Fundamentals/related-3.jpg b/starter/02-HTML-Fundamentals/img/related-3.jpg
similarity index 100%
rename from starter/02-HTML-Fundamentals/related-3.jpg
rename to starter/02-HTML-Fundamentals/img/related-3.jpg
diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html
index 0c8f3c804..787fc33bb 100644
--- a/starter/02-HTML-Fundamentals/index.html
+++ b/starter/02-HTML-Fundamentals/index.html
@@ -16,57 +16,105 @@
The Basic Language of the Web: HTML
The Basic Language of the Web: HTML
-->
-
📘 The Code Magazine
-
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.
-
-
-
In HTML, each element is made up of 3 parts:
-
-
-
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!
+
+
📘 The Code Magazine
+
+
+
+
+
+
+
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!
+
+
+
+
+
+
diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html
index df8a623a8..da1718533 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.
+