Abbreviations
Attributes
HTML
CSS
Wild
100

W3C

World Wide Web Consortium

100

How do you make text blue?

color: blue

100

Write HTML code to define a table with identifier “myTable”

<table id=”myTable”></table>

100

What does CSS stand for?

Cascading Style Sheets

100

How do you link a CSS page to an HTML page?

<link rel=”stylesheet” href=”style.css”/>

200

wbr

Word Break

200

What attribute makes font bold?

Strong

200

What does a nav container contain

links

200

What is the tag for an internal style sheet

<style>

</style>

200

What term is used to describe code that is freely available to view and edit?

Open Source

300

URL

Uniform Resource Locator

300

alt attribute on an image is used for

specify fallback content

300

Where does the text inside the title bar go?

On your browsers tab.
300

CSS rule allows to apply absolute positioning to an element

position: absolute

300

Write the CSS shorthand for a border with a dotted line, purple and 3px width.

{border: 3px dotted purple}

400

HTTP

Hypertext Transfer Protocol

400

What is an attribute that can be used with any element?

Global Attribute

400

What is the HTML start tag for the element in the top row of a table that describes the data in the column below?

<th>

400

What symbol is used for an ID selector

#

400

How many cats does Alyssa have?

2

500

&nbsp

Space

500

What color will this be:

{background-color:rgba(200,0,200,1);}


Purple(ish)

500

Write an image tag for a picture of an elephant titled elephant.jpg

  <img src="elephant.jpg" alt="elephant"> 

500

Write the CSS rule that puts 5 pixels of padding around the text in each table header and data cell.

th, td {padding: 5px;}    

500

What is Alyssa's favorite color?

Purple

M
e
n
u