/* This is how you write a comment in a CSS instead of the <!-- --> used in HTML */


/* This is used to set all h3 tags to gray */

h3 {color: gray}


/* This is our default h1 rule used to set all h1 elements to yellow */

h1 {color: yellow}


/* This is a class rule used to set all h1 tags with the class of "orange" to the color orange */

.orange {color: orange}



/* This is our id selector used to set all h1 tags with the id of "aqua" to the color aqua */

h1#aqua {color: aqua}



/* This code is used to control the example tables you see on the page  */

table.table_example {
text-align: center;
}

.table_example th {
font-size: 14pt;
}
