HTML Structure
HTML Tags
CSS
HTML Text/Lists
Miscellaneous
100

What is the name of a basic HTML element?

Tag

100

What HTML tag is used to create a paragraph?

<p></p>
100

What is the main purpose of CSS?

Styling (e.g. color, font face/style, positioning)

100

Which heading will produce a smaller font size, h1 or h6?

h6

100

What is the difference between an id and a class?

You can only use an id once but you can use the same class in multiple elements.

200
You should put all visible website content between which tags?
<body></body>
200
How would you write the code to insert an external link to https://google.com with the text "Click here to go to Google"?
<a href="https://google.com">Click here to go to Google</a>
200

What symbol do you use in CSS to reference a class?

Period .

200

Which tags would you use to create an ordered list?

<ol></ol>

200

What is the file extension for an HTML document?

.html

300

What is the difference between an HTML opening tag and a closing tag?

Closing tag has a '/'

300

What tag is used to create a table?

<table></table>

300

What character/symbol goes at the end of every CSS declaration?

Ex. 

body {background-color: red____}

Semi-colon (;)

300

Which HTML tags would you use to bold text?

<strong></strong>

300

What does the alt attribute in an <img> tag important for?

Provide a textual description of the image for visually impaired people or in case the image doesn’t properly load.

400

What tags should always open and close an HTML document?

<html></html>

400

Name the two possible tags used to create a list and what type of lists those create.

<ul></ul> for an Unordered list

<ol></ol> for an Ordered list

400

The background color of a whole page can be changed by editing this CSS selector.

Body

400

When specifying a font-family, you should always include...

A back-up generic font such as sans-serif or monospace.

400

What HTML tags are used to denote an element in a list?

<li></li>

500
Between which two tags should you put your CSS code?

<style></style>

500

This HTML tag allows you to group elements together into one block.

<div></div>

500

What symbol do you use in CSS to reference an id?

Hashtag (#)
500

Which HTML tags do you use to italicise text?

<em></em>

500

Find the error in the code below:

<a website="https://google.com">Click here to go to Google</a>

It should say href= instead of website=