Tags
CSS
Find the error
Terminology
Attributes
100

What tag creates a paragraph?

<p>

100

What does CSS stand for?

Cascading Style Sheet

100

<img href="picture.jpg" width=100>

href should be src

100

What does HTML stand for?

HyperText Markup Language

100

I want to make a picture bigger. What 2 attributes can I use on the <img> tag?

Width and Height

200

How many heading tags are there? Which is the smallest and which is the largest?

6 headings, h1 = largest and h6 = smallest

200

What property can I use to change the text in my paragraph from black to red in my CSS file?

color: "red";

200

<a src= www.google.com> This is a link to google. </a>

No quotes around the link 

should be href not src

200

These types of images or links are stored within the folder of your website. 

LOCAL images/links

200

What is the attribute used in <img> to link an image.

src="..."

300

What can I use to add an element to my unordered or ordered list?

<li> ... </li>

300

What CSS property allows me to center text on my webpage?

(not <center></center>)

text-align: center; 

300

<body style="background-color: blue, font-family: Verdana">

Style attributes are separated by a ; not a ,

300

What does it mean for a website to be "accessible" and what is one way to make a website accessible?

Users with wide range of needs, conditions or disabilities can use your website.

Ways:

- Bigger text/pictures

- Picture Alts (for screen readers)

- Colorblind mode, night mode, dark mode, etc.

300

What attribute can I use for an image/video to give users with a screen reader the ability to know what your page is displaying?

alt="..."

400

What do we use the <link> tag.

To link a stylesheet (CSS) to our html file.

400

I have an <h1> using internal styling to make it red (style="color: red;")

If my CSS file says

h1 {

    color: pink;

} Will my heading be red or pink?

Red. Internal styling overrides CSS styling.
400

<?DOCTYPE html>

Also, what is the corrected line used for?

<!DOCTYPE html>

Used to signify that the browser is opening an HTML5 document 

400

The browser needs to find the ___________ of the URL that you search before being able to read and display it's HTML code. 

IP Address

400

I have a green background on my website but want my large heading to have a white background behind it. What attribute can I use for this and where?

<h1 style="background-color=white;">

Inside of the corresponding h1 tag

500

How can you tell the difference between a starting and closing tag? Which tag does not need to be closed?

starting: <...>

closing: </...>

<br> does not need to be closed.

500

What the difference between styling an <ol> or <ul> vs styling an <li>?

<ol> and <ul> styling is only for the bullets/numbers of the list

<li> styles the element that is inside of the bullet/number.

500

p { 

      background-color: yellow 

      color: blue 

      font: Verdana

}

   Missing semi-colons

   Font-family

500

Give the tags of HTML boilerplate code in order (including DOCTYPE). 

<Doctype>

<html>

<head></head>

<body></body>

</html>

500

What attribute do I use if I want to change the background color of my webpage and in which tag would I put it?

<body style="background-color=pink;">

M
e
n
u