1. What is HTML?
A webpage is made up of three layers:
1. Content Layer – HTML (Hypertext Markup Language)
2. Presentation Layer – CSS (Cascading Style Sheets)
3. Behavior Layer – JavaScrip
2. Global Structure of HTML Document
head -> Page Title (in the window tab)
body -> Content
Resources:
3. Intro to HTML Review (6 Questions)
* A Markup Language provides meaning to text in a document, using instructions that describe how text should be structured and formatted.
4. Headings and Paragraphs
5. Headings and Paragraphs Challenges
6. Creating Lists
HTML Lists:
– Description List
** list item
7. Creating Links
** anchor link
** Absolute URL: contain full web url address, begins with http:// or https://
** href is an anchor element attribute that points to a location. Attribute is followed by an equal sign and a value inside the quotes
8. Lists and Links Challenge