Welcome to MR Jennifer!
You don't need to put a <p> tag within an <h2> tag. One tag is saying that you are creating a header, the other is saying you are creating a paragraph...you can't do both.
For a quick answer, simply change your headers to something like this:
Code:
<h2>6 <span>The Real Enterprise</span></h2>
and include something like this in your CSS file (of course you can change this however you wish to make the header
look any way you want):
Code:
h2 {font-weight:bold; font-size:1.3em; text-align:center; font-family:serif}
h2 span {display:block; font-size:.8em; margin-top:.5em; font-variant:small-caps}
The longer answer is spend a little bit of time reading the html/css tutorials available here on MR's wiki, or at W3Schools
HTML and
CSS website. That will help you out
tons.