Coding Basics
HTML
CSS
Text
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

200

What essential tag will hold the majority of a website's content?

Body

200

What is the name of the tag used to create hyperlinks?

Anchor tag

Also called just the "a" tag.

200

Between what tags do you link HTML to CSS pages?

<head></head>

200

How is font size normally measured? In what unit?

Pixels (px)

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>

300

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

Semi-colon (;)

300

What does HTML stand for?

Hyper Text Markup Language

400

What helps us in customising a tag's behaviour/output?

Attributes

400

Name the two possible tags used to create a list.

ul for an Unordered list

ol for an Ordered list

400

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

Body

400

What does CSS Stand for?

Cascading Style Sheets

500

What is the term for the "grammatical structure" in which HTML and CSS are written?

Syntax

500

This HTML tag allows you to put a space between lines, similar to hitting "enter" on a keyboard.

<br>

500

Name one of the three "elements" in a CSS rule? E.g. h1{color: orange;}

Selector, Property, Value

500

What HTML tag is used to define the element of a given list?

<li></li>