What tag creates the biggest heading?
What is <h1>?
Which property sets text color?
What is color?
color: red;
What is change the text to red?
What is the tag for an unordered list?
In internal CSS, how would you change all paragraphs to blue?
what is <style> p {color:blue;} </style>?
Which tag creates a paragraph?
What is <p>?
Which property sets the background color?
what is background-color?
text-align: center;
What is center the text horizontally?
What is the tag for an ordered list?
What is <ol>?
In internal CSS, how would you change all of the smallest headings?
what is <style> h6{;} </style>
How do you display an image?
What is <img src = "">?
Which property sets the size of text?
What is font-size?
background-image: url("cat.png");
What is adds an image as the background?
What is the tag for the list items?
What is <li>?
In internal CSS, how would you center all <h1> headings?
what is <style> h1{text-align: center;} </style>?
How do you create a link?
Which property aligns text?
What is text-align?
font-family: "Arial";
What is changes the font to Arial
What is the tag for a description list?
What is <dl>?
In internal CSS, how would you make all list items bigger text?
What is <style> li { font-size: bigger; } or li { font-size: 20px; } </style>
Which tag groups content into a container?
What is <div>?
Which property sets the font?
What is font-family?
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
What is imports a Google Font (Roboto) into the project?
What tags are used to create a description title and description.
What is <dt> and <dd>?
In internal CSS, how would you change all text to red text?
What is <style> body {color:red;} </style>?