/*
TITLE: External
AUTHOR: Mia Amundson
PURPOSE: Prime Properties for Internet Apps
ORIGINALLY CREATED ON:04.11.12
LAST MODIFIED ON:04.11.12 
LAST MODIFIED BY:Mia Amundson
MODIFICATION HISTORY: 
 */
body { 
background-color: yellow; /*This will make the beackground color be yellow */
       border: 1px solid black; /* This will make the border black and one pixel wide */
	   font: Times New Roman; /* This makes the font be in Times New Roman */
	   color: red; /* This changes the font color to red */
	   font-size: 1.5em; /* This makes the font size 12 because it is using em and not px */
	   font-weight: heavy; /* This makes the font weight heavy */
	   padding: 5 px 12 ox; /* This adds padding */
}
h1 {
padding: 1px solid black;
font-weight: heavy;
font: Times New Roman;
color: red;
}


	   
	  
	   

