CSS
HTML
Tables
Flexboxes
Wild
100

How do you make text blue?

color: blue

100

How do you link a css file called style.css?

<link href='styles.css' rel='stylesheet'>

100

What is <th>

Table Header

100

How do you define an element as a flexbox?

display: flex;


100

What does HTTP stand for?

Hypertext Transfer Protocol

200

What is the tag for an internal style sheet

<style>

</style>

200

Where does all of your code that will show up in the viewport go?

Inside the body element

200

How do you make one box in a table span 3 columns?

colspan='3'

200

How do you orientate the flaxboxes by rows and make them wrap around as needed?

flex-flow: row wrap;


200

What does URL stand for?

Uniform Resource Locator

300

What symbol is used to select an id?

#

300
Write an empty div element with the class of cats

<div class='cats'> </div>

300

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

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

300

How do you make an object into a flexbox that is compatible with Safari?

display:-webkit-flex;

300

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

Open Source

400

What is used to select a psudo-class?

::

400

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

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

400

How would you give you table a red dotted border thats 2px thick.

 border: 2px dotted red; 


400

Give a flexbox the basis of 350px 5 shrink and 2 grow

Flex: 2 5 350px;

400

How many cats do I have?

2


500

CSS rule for a box shadow that is 5px to the right, 5 px down and feathered out for 15px.

box-shadow: 5px 5px 15px; 

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

select the list items that are under the horizontal class in the nav, make them flexboxes.

nav.horizontal li {
display: flex;
}

500

What's Alyssa's favorite color?

Purple