/* External CSS */

/* Sets font family for text in the body section */
body {
  font-family:verdana; 
}
/* Sets color for h1 */
h1 {
  color:blue; 
}
/* Sets color for h2 */
h2 {
  color:navy; 
}
/* Sets font family for p*/
p {
  /* Using cascading it changes the font family of the p element from Verdana to Arial */
  font-family:arial;
}
/* Sets font family for li*/
li {
	font-family:arial;
}
