How do you make text blue?
color: blue
How do you link a css file called style.css?
<link href='styles.css' rel='stylesheet'>
What is <th>
Table Header
How do you define an element as a flexbox?
display: flex;
What does HTTP stand for?
Hypertext Transfer Protocol
What is the tag for an internal style sheet
<style>
</style>
Where does all of your code that will show up in the viewport go?
Inside the body element
How do you make one box in a table span 3 columns?
colspan='3'
How do you orientate the flaxboxes by rows and make them wrap around as needed?
flex-flow: row wrap;
What does URL stand for?
Uniform Resource Locator
What symbol is used to select an id?
#
<div class='cats'> </div>
Write HTML code to define a table with id “myTable”
<table id=”myTable”></table>
How do you make an object into a flexbox that is compatible with Safari?
display:-webkit-flex;
What term is used to describe code that is freely available to view and edit?
Open Source
What is used to select a psudo-class?
::
Write HTML code to define a table with identifier “myTable”
<table id=”myTable”></table>
How would you give you table a red dotted border thats 2px thick.
border: 2px dotted red;
Give a flexbox the basis of 350px 5 shrink and 2 grow
Flex: 2 5 350px;
How many cats do I have?
2
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;
Write an image tag for a picture of an elephant titled elephant.jpg
<img src="elephant.jpg" alt="elephant">
Write the CSS rule that puts 5 pixels of padding around the text in each table header and data cell.
th, td {padding: 5px;}
select the list items that are under the horizontal class in the nav, make them flexboxes.
nav.horizontal li {
display: flex;
}
What's Alyssa's favorite color?
Purple