This CSS property changes the text color of an element.
What is color?
This HTML tag is commonly used to connect an external stylesheet to a webpage.
What is <link>?
This HTML element is used to collect user input.
What is <form>?
h1 {
background-color: blue;
}What is the property in this example?
What is background-color?
What are the two list types and their tags?
What is ol and ul?
This selector targets all <p> elements on a webpage.
What is the element selector p?
This selector uses a period (.) before its name in CSS.
What is a class selector?
This HTML5 element is used to embed video content into a webpage.
What is <video>?
<img src="cat.jpg" alt="Cat">
This attribute provides alternative text for accessibility.
What is alt?
What is .heyo?
Margins, borders, padding, and content together make up this CSS concept.
What is the CSS Box Model?
This selector uses a hashtag (#) before its name in CSS.
What is an ID selector?
What does RWD mean in terms of html/css?
What is responsive web design?
.container {
display: flex;
}This display mode places elements in a flexible row or column layout.
What is Flexbox?
What is the universal selector (selects everything on the page)?
What is *? (will accept body)
This type of stylesheet is written directly inside an HTML tag using the style attribute.
What is inline CSS?
To start a flexbox, I use what?
What is display:flex?
What does SVG stand for?
What is scalable vector graphic?
a:hover {
color: red;
}This pseudo-class activates when the mouse pointer is over a link.
What is :hover?
This media query feature is commonly used to create responsive layouts for smaller screens.
What is max-width?
This CSS property controls the space inside an element between the content and the border.
What is padding?
The most common CSS framework is called?
What is Bootstrap?
What are the two ARIA states?
<input type="password">
This form field hides typed characters from view.
What is a password input?
This CSS pseudo-class selects the first child element of its parent.
What is :first-child?