Tag that creates a paragraph.
What is <p></p>?
Define "semantic HTML"
What are HTML tag that perform based on their name.
What does color: do
What is change the font color of selector?
The outermost layer?
What is the margin?
What file is usually home page?
What is index.html?
Tag that makes a link
What is <a></a>?
What does <main> represent?
What is signifies the primary content of a document?
Symbol selects an ID?
What is #?
What does padding affect?
What is provide spacing between content and internal border?
How do you link a CSS file?
What is <link rel="stylesheet" href="style.css">?
Tag that inserts an image
What is <img />?
Using <section> vs <div>
What is because <section> provides semantic meaning, indicating a logical section within a document, while <div> is a generic container with no inherent meaning?
Selector that targets all <p> tags.
What is p?
Difference between margin and border?
What is margin provides invisible separate between block elements while border provides visual framing of content?
What tag builds a nav bar?
What is <nav>?
Tag that defines the page title.
What is the <h1></h1>?
Content of <header>
What is contains introductory content or navigational aids for a section or page?
font-family: target?
What is the font type of the selector?
Name a display value used for layout
What is flex, grid, block, inline-block?
Write path to pages/about.html
href="pages/about.html"
The tag that groups block elements.
What is <div></div>?
Give 3 semantic HTML5 elements
What are
What symbol selects all elements?
What is *?
What does box-sizing: border-box do?
What is determines how an element's total width and height are calculated?
Includes padding and border inside total width
Relative vs. absolute links
What is relative links specify a path to a resource relative to the current page, while absolute links provide the full URL, including protocol, domain, and path, to a specific resource?