HTML Tags
CSS Properties
What does this do?
Lists & Links
Selectors & Types
100

What tag creates the biggest heading?

What is <h1>?

100

Which property sets text color?

What is color?

100

color: red;

What is change the text to red?

100

What is the tag for an unordered list?

what is <ul>?


100

In internal CSS, how would you change all paragraphs to blue?

what is <style> p {color:blue;} </style>?

200

Which tag creates a paragraph?

What is <p>?

200

Which property sets the background color?

what is background-color?

200

text-align: center;

What is center the text horizontally?

200

What is the tag for an ordered list? 

What is <ol>?

200

In internal CSS, how would you change all of the smallest headings?

what is <style> h6{;} </style>

300

How do you display an image?

What is <img src = "">?

300

Which property sets the size of text?

What is font-size?

300

background-image: url("cat.png");

What is adds an image as the background?

300

What is the tag for the list items?

What is <li>?

300

In internal CSS, how would you center all <h1> headings?

what is <style> h1{text-align: center;} </style>?

400

How do you create a link?

What is <a href = "">?
400

Which property aligns text?

What is text-align?

400

font-family: "Arial";

What is changes the font to Arial 

400

What is the tag for a description list?

What is <dl>?

400

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>

500

Which tag groups content into a container?

What is <div>?

500

Which property sets the font?

What is font-family?

500

What is imports a Google Font (Roboto) into the project?

500

What tags are used to create a description title and description.

What is <dt> and <dd>?

500

In internal CSS, how would you change all text to red text?

What is <style> body {color:red;} </style>?