diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..6b665aaa0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html new file mode 100644 index 000000000..0ffb9e267 --- /dev/null +++ b/starter/02-HTML-Fundamentals/index.html @@ -0,0 +1,71 @@ + + + + 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. + + HTML code on a screen + +

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. +
+ + MDM Web Docs + +

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!

+ +