What is the name of a basic HTML element?
Tag
What HTML tag is used to create a paragraph?
<p></p>
What is the main purpose of CSS?
Styling (e.g. color, font face/style, positioning)
Which heading will produce a smaller font size, h1 or h6?
h6
What essential tag will hold the majority of a website's content?
Body
What is the name of the tag used to create hyperlinks?
Anchor tag
Also called just the "a" tag.
Between what tags do you link HTML to CSS pages?
<head></head>
How is font size normally measured? In what unit?
Pixels (px)
What is the difference between an HTML opening tag and a closing tag?
Closing tag has a '/'
What tag is used to create a table?
<table>
What character (symbol) goes at the end of every CSS declaration?
Semi-colon (;)
What does HTML stand for?
Hyper Text Markup Language
What helps us in customising a tag's behaviour/output?
Attributes
Name the two possible tags used to create a list.
ul for an Unordered list
ol for an Ordered list
The background color of a whole page can be changed by editing this CSS selector.
Body
What does CSS Stand for?
Cascading Style Sheets
What is the term for the "grammatical structure" in which HTML and CSS are written?
Syntax
This HTML tag allows you to put a space between lines, similar to hitting "enter" on a keyboard.
<br>
Name one of the three "elements" in a CSS rule? E.g. h1{color: orange;}
Selector, Property, Value
What HTML tag is used to define the element of a given list?
<li></li>