/* File named style.css */
/* Created by David Podemski */

P {font-family:"Times"; font-size:11pt; line-height:14pt; text-align:left; color:maroon}
/* 4. External Style Sheet specifies font family, font size, line height, text color, text alignment for paragraphs */

H1 {font-family:"Helvetica"; font-size:24pt; line-height:25pt; text-align:center; color:navy}
H2 {font-family:"Helvetica"; font-size:14pt; line-height:18pt; text-align:left; color:navy}
/* 5. External Style Sheet specifies font family, font size, line height, text color, text alignment for at least one header size */

BODY {background:silver url(image1.jpg)}
/* 6. External Style Sheet specifies background color/image */

A:link {color:blue; text-decoration:none; background:cyan}
A:visited {color=green; text-decoration:none; background:cyan}
A:hover {color=purple; text-decoration:none; background:cyan}
A:active {color=black; text-decoration:none; background:cyan}
/* 7. External Style Sheet specifies visited, hover, and active links */

P.profile {text-indent:0; font-size:14pt; line-height=17pt; text-align:center; color:olive}
/* 8. External Style Sheet defines class for company profile section */

P.product {text-indent:0; font-size:13pt; line-height=16pt; text-align:center; color:red}
/* 9. External Style Sheet defines class for product description section */


/* 1. Appropriate use of comments */
/* 2. Use of coordinating color scheme and font face */
