HTML
CSS
Binary
Octal/Hexadecimal
100

What does HTML stand for?

What is Hypertext Markup Language?

100

CSS stands for...

What is Cascading Style Sheets?

100

The base that binary is in. 

The digits that binary uses.

What is 2?

What is 0 and 1. 

100

What base is octal in? What digits are used in octal?

What is base 8? The digits are 0-7. 

200

The location of where to put the code for an image.

What is in the body tags (<body></body>)?

200
The purpose of using CSS.

Styles the webpage.

Allows variations in display for different devices and screen size

200

A single digit represented by 0 or 1. 

What is a bit?

200

**Daily Double!!**

What base is hexadecimal in? What symbols are used in hexadecimal?

What is base 16? The symbols are 0-9 and A-F. 

300

<_________ ____> and <____></____> is put at the start of your code to tell the web browser that your page uses HTML

What is <!DOCTYPE html> and <html></html>?


300

A declaration is terminated by...

What is a semicolon(;)?

300

Convert 13 in decimal to binary.

What is 01101?
300

Convert 98 (in decimal) to its octal form.

What is 142?

400

<____> adds an image to a web page.

s_____ attribute gives the address of the image.

a__ attribute describes it to search engines and blind people.

h____ attribute sets the height of the image.

w____ attribute sets the width of the image

What is... img

src

alt

height

width?

400

**Daily Double!!**

_______ choose which HTML element is going to be styled

__________ decide how the element is going to change

What is selectors?

What is declarations?

400

Convert 57 in decimal to binary. 

What is 0111001?

400

Convert 251 (in decimal) to its hexadecimal form. 

What is FB?

500

Link an HTML file to a CSS file. 

<____> is used to link an HTML document to a CSS stylesheets

___ attribute sets the type of link (hint: starts with "r")

____ attribute sets the address of the file to link to (hint: starts with "h")

What is <link>?

What is rel?

What is href?

500

<?> creates a link to another webpage

____ attribute gives the address of the webpage (hint: it starts with "h")

______ attribute is set to "_blank" to show the linked page in a new tab when the user clicks it (hint: it starts with "t")

What is <a>?

What is href?

What is target?

500

Convert 100010 in binary to its decimal form. 

What is 34?

500

*Challenge*: Convert 56 (in octal) to its form in binary. 

What is 101110?

M
e
n
u