From f34eee6634a39de6ef2fd820622fded3fbe9f9eb Mon Sep 17 00:00:00 2001
From: dmgarriott <12465052+dmgarriott@users.noreply.github.com>
Date: Fri, 17 May 2024 21:37:01 -0700
Subject: [PATCH 1/2] Changed image folder hierarchy. Added index.html,
blog.html, and style.css
---
starter/02-HTML-Fundamentals/blog.html | 3 +
.../{ => 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 | 147 ++++++++++++++++++
starter/02-HTML-Fundamentals/style.css | 121 ++++++++++++++
9 files changed, 271 insertions(+)
create mode 100644 starter/02-HTML-Fundamentals/blog.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/02-HTML-Fundamentals/index.html
create mode 100644 starter/02-HTML-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..41233afcb
--- /dev/null
+++ b/starter/02-HTML-Fundamentals/blog.html
@@ -0,0 +1,3 @@
+
+
+
+
+ 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
+ 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!
+
+