/* Here is the code for the h2 tag at the bottom of the page.  Did you get it right????? */



h2 {color: blue}



/* CSS can get tricky and be used to control elements within elements such as all <a> tags within an <h3> tag (<a> link tags used within an <h3> tag) like this */

h2 a { 
color: pink;
text-decoration: none;
}


/* With the above code, only <a> tags WITHIN an <h2> tag will be yellow and have no text decoration (this basically removes the underline).  All other <h3> and <a> tags will have their normal rules applied to them.  */