From 1900aadbe338133905177a48d1c8e132e02eff2f Mon Sep 17 00:00:00 2001 From: Kiahna Isadore Date: Fri, 14 Jun 2024 09:29:36 -0700 Subject: [PATCH] commit html scraps 1 and 2 --- scraps/html-basics-scrap1.md | 1 + study-guides/html-basics.md | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/scraps/html-basics-scrap1.md b/scraps/html-basics-scrap1.md index 87a9ae6..72f132b 100644 --- a/scraps/html-basics-scrap1.md +++ b/scraps/html-basics-scrap1.md @@ -1,3 +1,4 @@ ## What is HTML? **HTML** stands for **H**yper **T**ext **M**arkup **L**anguage. HTML is used to build the skeleton of the website including which elements (text, images, buttons, etc.) should be included and the order in which they appear. Web browsers like Chrome or Safari know how to interpret HTML files and render their contents as an interactive web page. + diff --git a/study-guides/html-basics.md b/study-guides/html-basics.md index 9d3d9b2..9ba95c5 100644 --- a/study-guides/html-basics.md +++ b/study-guides/html-basics.md @@ -1 +1,13 @@ # HTML Basics + +## What is HTML? + +**HTML** stands for **H**yper **T**ext **M**arkup **L**anguage. HTML is used to build the skeleton of the website including which elements (text, images, buttons, etc.) should be included and the order in which they appear. Web browsers like Chrome or Safari know how to interpret HTML files and render their contents as an interactive web page. + +HTML files typically contain things like: + +- the text contents of a web page, structured into a hierarchy of page elements +- hyperlinks to other pages +- references to other files like images, CSS files, and JavaScript files +- definitions for interactive controls like buttons and text fields +- metadata to help web browsers understand the contents of the page