}
h1 {
color= "700000"; <!--this tells the browser what color to make the <h1> element-->
} 
body {
 
background-color: red; <!--this tells the browser to make the backround red
 
}
 

 
a:link {
 
color: pink; <!--this tells the browser to make the link pink-->
 
}
 
 
 
a:visited {
 
color: pink; <!--this tells the browser to make the link that has been visited to make the color pink-->
 
}
 
a:hover {
 
color: silver; <!--this tells the browser to make a link silver when it's being hovered on-->
 
}

 

 
h1, h2 {
font-family: french script mt; <!--this tells the browser to make the <h1> and <h2> element the "french script mt" font and the color blue-->
color: blue;
}

p {
color: silver; <!--this tells the browser to make the text in the <p> element silver-->
}