From 4447bedf1708c0955b65b7be04aca9b4d8f78c0f Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Sun, 10 Jul 2022 22:44:38 +0300 Subject: [PATCH 01/19] init: initial commit --- starter/02-HTML-Fundamentals/index.html | 16 ++++++++++++++++ 1 file changed, 16 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..ddf3bb88d --- /dev/null +++ b/starter/02-HTML-Fundamentals/index.html @@ -0,0 +1,16 @@ + + + + + + + The BasicLanguage of the WEB: HTML + + + + + +

The BasicLanguage of the WEB: HTML

+ + + From 99db61ed84380cdefa70f15d11a9ab13fa27474c Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Sun, 10 Jul 2022 23:28:38 +0300 Subject: [PATCH 02/19] feat: add page conent --- starter/02-HTML-Fundamentals/index.html | 60 ++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html index ddf3bb88d..638bf62b6 100644 --- a/starter/02-HTML-Fundamentals/index.html +++ b/starter/02-HTML-Fundamentals/index.html @@ -10,7 +10,65 @@ -

The BasicLanguage of the WEB: HTML

+ + +

📘 The Code Magazine

+

Posted by Laura Jones on Monday, June 21st 2027

+ +

The BasicLanguage 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:

+
    +
  1. The opening tag
  2. +
  3. The closing tag
  4. +
  5. The actual element
  6. +
  7. You can learn more at the MDN Web Docs.
  8. +
+ +

Why should you learn HTML?

+

+ There are countless reasons for learning the fundamental language of the + web. Here are 5 of them: +

+ +

Hopefully you learned something new here. See you next time!

+ From c6cc0a845aa4c11e59bb202d2fc10647fd133a01 Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 18:10:53 +0300 Subject: [PATCH 03/19] feat: add shoe page --- starter/02-HTML-Fundamentals/blog.html | 13 ++ starter/02-HTML-Fundamentals/challenge#2.html | 20 +++ .../{ => 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 | 165 +++++++++++++----- 8 files changed, 150 insertions(+), 48 deletions(-) create mode 100644 starter/02-HTML-Fundamentals/blog.html create mode 100644 starter/02-HTML-Fundamentals/challenge#2.html 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%) diff --git a/starter/02-HTML-Fundamentals/blog.html b/starter/02-HTML-Fundamentals/blog.html new file mode 100644 index 000000000..6fe12da15 --- /dev/null +++ b/starter/02-HTML-Fundamentals/blog.html @@ -0,0 +1,13 @@ + + + + + + + Blog + + +

BLOG

+ Main page + + diff --git a/starter/02-HTML-Fundamentals/challenge#2.html b/starter/02-HTML-Fundamentals/challenge#2.html new file mode 100644 index 000000000..24a4898ed --- /dev/null +++ b/starter/02-HTML-Fundamentals/challenge#2.html @@ -0,0 +1,20 @@ + + + + + + + Document + + +
+

Converse Chuck Taylor All Star Low Top

+ Chuck Taylor All Star Shoe +
+ + 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 638bf62b6..20252e8db 100644 --- a/starter/02-HTML-Fundamentals/index.html +++ b/starter/02-HTML-Fundamentals/index.html @@ -17,57 +17,126 @@

The BasicLanguage of the WEB: HTML

The BasicLanguage of the WEB: HTML
The BasicLanguage of the WEB: HTML
--> -

📘 The Code Magazine

-

Posted by Laura Jones on Monday, June 21st 2027

+
+

📘 The Code Magazine

-

The BasicLanguage 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. -

+ +
+ +
+

The BasicLanguage of the WEB: HTML

+ + laura jones picture + +

Posted by Laura Jones on Monday, June 21st 2027

+ + html code on a screen + +

+ 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:

+
    +
  1. The opening tag
  2. +
  3. The closing tag
  4. +
  5. The actual element
  6. +
  7. + You can learn more at the + MDN Web Docs. +
  8. +
+ +

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!

+
-

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:

-
    -
  1. The opening tag
  2. -
  3. The closing tag
  4. -
  5. The actual element
  6. -
  7. You can learn more at the MDN Web Docs.
  8. -
+ -

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!

+
Copyright © 2027 by The Code Magazine.
From 5298e75046d7ae31c883f2efe8895d85a7aa978a Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 18:12:39 +0300 Subject: [PATCH 04/19] Revert "feat: add shoe page" This reverts commit c6cc0a845aa4c11e59bb202d2fc10647fd133a01. --- starter/02-HTML-Fundamentals/blog.html | 13 -- starter/02-HTML-Fundamentals/challenge#2.html | 20 --- starter/02-HTML-Fundamentals/index.html | 165 +++++------------- .../{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 8 files changed, 48 insertions(+), 150 deletions(-) delete mode 100644 starter/02-HTML-Fundamentals/blog.html delete mode 100644 starter/02-HTML-Fundamentals/challenge#2.html 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%) diff --git a/starter/02-HTML-Fundamentals/blog.html b/starter/02-HTML-Fundamentals/blog.html deleted file mode 100644 index 6fe12da15..000000000 --- a/starter/02-HTML-Fundamentals/blog.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - Blog - - -

BLOG

- Main page - - diff --git a/starter/02-HTML-Fundamentals/challenge#2.html b/starter/02-HTML-Fundamentals/challenge#2.html deleted file mode 100644 index 24a4898ed..000000000 --- a/starter/02-HTML-Fundamentals/challenge#2.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Document - - -
-

Converse Chuck Taylor All Star Low Top

- Chuck Taylor All Star Shoe -
- - diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html index 20252e8db..638bf62b6 100644 --- a/starter/02-HTML-Fundamentals/index.html +++ b/starter/02-HTML-Fundamentals/index.html @@ -17,126 +17,57 @@

The BasicLanguage of the WEB: HTML

The BasicLanguage of the WEB: HTML
The BasicLanguage of the WEB: HTML
--> -
-

📘 The Code Magazine

+

📘 The Code Magazine

+

Posted by Laura Jones on Monday, June 21st 2027

- -
- -
-

The BasicLanguage of the WEB: HTML

- - laura jones picture - -

Posted by Laura Jones on Monday, June 21st 2027

- - html code on a screen - -

- 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:

-
    -
  1. The opening tag
  2. -
  3. The closing tag
  4. -
  5. The actual element
  6. -
  7. - You can learn more at the - MDN Web Docs. -
  8. -
- -

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 BasicLanguage 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:

+
    +
  1. The opening tag
  2. +
  3. The closing tag
  4. +
  5. The actual element
  6. +
  7. You can learn more at the MDN Web Docs.
  8. +
-
Copyright © 2027 by The Code Magazine.
+

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!

diff --git a/starter/02-HTML-Fundamentals/img/laura-jones.jpg b/starter/02-HTML-Fundamentals/laura-jones.jpg similarity index 100% rename from starter/02-HTML-Fundamentals/img/laura-jones.jpg rename to starter/02-HTML-Fundamentals/laura-jones.jpg diff --git a/starter/02-HTML-Fundamentals/img/post-img.jpg b/starter/02-HTML-Fundamentals/post-img.jpg similarity index 100% rename from starter/02-HTML-Fundamentals/img/post-img.jpg rename to starter/02-HTML-Fundamentals/post-img.jpg diff --git a/starter/02-HTML-Fundamentals/img/related-1.jpg b/starter/02-HTML-Fundamentals/related-1.jpg similarity index 100% rename from starter/02-HTML-Fundamentals/img/related-1.jpg rename to starter/02-HTML-Fundamentals/related-1.jpg diff --git a/starter/02-HTML-Fundamentals/img/related-2.jpg b/starter/02-HTML-Fundamentals/related-2.jpg similarity index 100% rename from starter/02-HTML-Fundamentals/img/related-2.jpg rename to starter/02-HTML-Fundamentals/related-2.jpg diff --git a/starter/02-HTML-Fundamentals/img/related-3.jpg b/starter/02-HTML-Fundamentals/related-3.jpg similarity index 100% rename from starter/02-HTML-Fundamentals/img/related-3.jpg rename to starter/02-HTML-Fundamentals/related-3.jpg From de63859e83d8bc02993124fc8bf931493a03b4d9 Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 18:27:30 +0300 Subject: [PATCH 05/19] feat: add challenge #2 page --- starter/02-HTML-Fundamentals/challange#2.html | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 starter/02-HTML-Fundamentals/challange#2.html diff --git a/starter/02-HTML-Fundamentals/challange#2.html b/starter/02-HTML-Fundamentals/challange#2.html new file mode 100644 index 000000000..1098dbe5c --- /dev/null +++ b/starter/02-HTML-Fundamentals/challange#2.html @@ -0,0 +1,34 @@ + + + + + + + Challenge #2 + + +
+

Converse Chuck Taylor All Star Low Top

+ Chuck Taylor All Star Shoe +

$65.00

+

Free shipping

+

+ Ready to dress up or down, these classic canvas Chucksare an everyday + wardrobe staple +

+ More information → +

Product details

+
    +
  • Lightweight, durable canvas sneaker
  • +
  • Lightly padded footbed for added comfort
  • +
  • Iconic Chuck Tailor ankle patch
  • +
+ +
+ + From 54d28d7c49c9c1ee3ccce5849940e3277e65de4e Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 18:42:40 +0300 Subject: [PATCH 06/19] feat: add aside section --- starter/02-HTML-Fundamentals/index.html | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html index 638bf62b6..a654466a1 100644 --- a/starter/02-HTML-Fundamentals/index.html +++ b/starter/02-HTML-Fundamentals/index.html @@ -69,6 +69,38 @@

Why should you learn HTML?

Hopefully you learned something new here. See you next time!

+ + From ae1def0b072d32f7d8d5f7744edf58c4016f7dc5 Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 18:43:44 +0300 Subject: [PATCH 07/19] feat: add footer --- starter/02-HTML-Fundamentals/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html index a654466a1..fc80deb0c 100644 --- a/starter/02-HTML-Fundamentals/index.html +++ b/starter/02-HTML-Fundamentals/index.html @@ -101,6 +101,8 @@

Related posts

+
Copyright © 2027 by The Code Magazine.
+ From 98d8838bd02356d2c193b3e28f295ccddf3a0c0a Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 18:45:25 +0300 Subject: [PATCH 08/19] feat: add blog page --- starter/02-HTML-Fundamentals/blog.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 starter/02-HTML-Fundamentals/blog.html diff --git a/starter/02-HTML-Fundamentals/blog.html b/starter/02-HTML-Fundamentals/blog.html new file mode 100644 index 000000000..3b9b6e328 --- /dev/null +++ b/starter/02-HTML-Fundamentals/blog.html @@ -0,0 +1,10 @@ + + + + BLOG + + +

BLOG

+ Back to home + + From 3b49af91cf100afd530c8782c9dda50bc1327c52 Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 18:46:55 +0300 Subject: [PATCH 09/19] feat: add img folder --- .../02-HTML-Fundamentals/{ => img}/challenges.jpg | Bin .../02-HTML-Fundamentals/{ => img}/laura-jones.jpg | Bin starter/02-HTML-Fundamentals/{ => img}/post-img.jpg | Bin .../02-HTML-Fundamentals/{ => img}/related-1.jpg | Bin .../02-HTML-Fundamentals/{ => img}/related-2.jpg | Bin .../02-HTML-Fundamentals/{ => img}/related-3.jpg | Bin 6 files changed, 0 insertions(+), 0 deletions(-) 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%) 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 From 451e8a786172164a842a3c7dc5bf9cd811ed85ef Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 19:04:54 +0300 Subject: [PATCH 10/19] feat: add nav --- starter/02-HTML-Fundamentals/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html index fc80deb0c..56c374d04 100644 --- a/starter/02-HTML-Fundamentals/index.html +++ b/starter/02-HTML-Fundamentals/index.html @@ -18,6 +18,14 @@
The BasicLanguage of the WEB: HTML
The BasicLanguage of the WEB: HTML
-->

📘 The Code Magazine

+ + +

Posted by Laura Jones on Monday, June 21st 2027

The BasicLanguage of the WEB: HTML

From 48ec4a5ebe592b60d51b29f27da3961a9aa3bc2b Mon Sep 17 00:00:00 2001 From: Andrii Ferenchuk Date: Mon, 11 Jul 2022 19:07:02 +0300 Subject: [PATCH 11/19] fix: improve murkup --- starter/02-HTML-Fundamentals/index.html | 111 ++++++++++++------------ 1 file changed, 57 insertions(+), 54 deletions(-) diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html index 56c374d04..42b1db4d7 100644 --- a/starter/02-HTML-Fundamentals/index.html +++ b/starter/02-HTML-Fundamentals/index.html @@ -18,64 +18,67 @@
The BasicLanguage of the WEB: HTML
The BasicLanguage of the WEB: HTML
-->

📘 The Code Magazine

+
+ +
- +
+

Posted by Laura Jones on Monday, June 21st 2027

-

Posted by Laura Jones on Monday, June 21st 2027

+

The BasicLanguage 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. +

-

The BasicLanguage 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:

-
    -
  1. The opening tag
  2. -
  3. The closing tag
  4. -
  5. The actual element
  6. -
  7. You can learn more at the MDN Web Docs.
  8. -
+

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:

+
    +
  1. The opening tag
  2. +
  3. The closing tag
  4. +
  5. The actual element
  6. +
  7. You can learn more at the MDN Web Docs.
  8. +
-

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!

+

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!

+