A
B
C
D
E
100

starts our table, data/information arranged in rows and columns

<table>

100

an attribute that allows us to add an outline to our table cells

border

100

the skin and makeup our our web page. It allows us to apply styling

Cascading Style Sheets

100

allows you to apply a style to a single element type instead of multiple ones.

Id's

100

allows you to apply the same types of format to a bunch of elements at once

classes

200

surrounds the information going on each row in our table

<tr>

200

this allows us to separate our webpage into different sections so that we can format each section individually

<div>

200

describes how our html file should look and holds our formats

style sheet

200

css added directly into our HTML tags using the style attribute

Inline

200

separate css file created on a text editor - it is not part of the html document, and can be used again and again for multiple web pages

external

300

used to set up our table columns 

<td>

300

where our actual table information is enclosed in

<tbody>

300

the name for the tags that we use in CSS

Selectors

300

Applies to the whole html page and is inserted directly into the head tags and enclosed by style tags.

Internal (also as embedded)

300

allows us to format all elements on a page

*

400

the cells that will contain the column heading names.

<th>

400

An attribute that causes a table cell to span across multiple columns, great for when we are adding titles to our tables

colspan attribute

400

contains one or more properties and values separated by semi-colons and contained within curly braces

declaration block

400

how to label a class named blue on a css

.blue

400

how to label an id name red on a css

#red

500

contains the information about our tables such as the column headings

<thead>

500

this allows us to format small individual parts of our web page such as a single word

<span>

500

The format for an internal style sheet.  Include the tags it's nested in.

<head>

   <style>

        p {

         color: blue;

        }

  </style>

</head>

  

500

create an inline style sheet for links being the color red

<a style="color:red"></a>

500

goes between head tags on html document and has three attributes to link to an external css

<link type="text/css" rel="stylesheet" href="CSS file name"/>

M
e
n
u