HTML
CSS
Elements
Attributes
Other
100

HTML stands for

Hyper Text Markup Language

100

CSS Stands for

Cascading Style Sheets

100

What is the element for a paragraph

<p>

100

attached to the image element

src

100

What element is used for an ordered list and an unordered list

<ol> / <ul>

200

What version of HTML are we using

HTML5

200

Inline style puts the style where

In specific elements

200

How many heading elements are there

6

200

What is the attribute formula

___="___"

200

What do you need to put into the opening audio element to add a control box to your audio file

<audio controls>

300

A piece of a website, marked by a start tag and often closed with an end tag is an HTML

Element

300

internal style puts the style where?

In the head section with a <style> element

300

what element allows images

<img>

300

What is the attribute to help link things

href

300

What element is used to add a video?

<iframe>

400

<>

Tags

400

an External style sheet puts the style where

On its own sheet then linked to the original sheet using a <link> element

400

How do you put in an audio file

<audio>

400

What attribute would you use to add a radio button onto your form

type

400

What is the full code to link your external style sheet 

<link rel="Stylesheet" href="filename.css">

500
This element classifies what language code we are using

<html>

500

What is a CSS Selector

A CSS rule that defines which HTML elements should be applied to the style

500

List all the elements for a table

<table> <tr> <td> <th>

500

give all 4 attributes we have used to add an image

src / alt / height / width

500

What is the code to link other html files to your home file

<a href="filename.html"> name of link </a>