What does HTML stand for?
HyperText Markup Language
What does CSS stand for?
Cascading Style Sheets
What tag is used for the main navigation area of a webpage?
<nav>
Which property controls how wide an element is?
width
What CSS property changes the font used for an element?
font-family
What tag is used to create a paragraph?
<p>
What symbol is used to create a class in CSS?
A period (.)
Which tag is used to mark video content? (not from youtube)
What CSS property adds space inside an element’s border?
Padding
What tag is used to create a clickable link?
<a>
What attribute is required in an <img> tag to specify where the file is coming from?
src
Which property changes the text color?
Which tag is used to mark important standalone content like a news article?
<article>
What property adds space outside an element’s border?
Margin
This tag defines a table row. Each element represents a new row in the table.
<tr>
What tag is used to create the largest heading?
<h1>
What CSS property sets the background color?
background-color
Which tag represents a footer for a section or page?
<footer>
Name the four parts of the CSS box model.
Content, Padding, Border, Margin
What units are relative to the size of the browser window? (in relation to viewport)
vw, vh
What HTML element contains all the visible content of a webpage?
<body>
What symbol is used to create an ID in CSS?
a hashtag (#)
What semantic tag highlights content that is slightly more important than normal text but not strong importance?
**Hint: creates emphasis
<em>
What CSS layout method uses flexible rows or columns to align items?
Flexbox
What CSS rule allows you to apply styles only when a condition (like screen size) is met?
@media