XHTML is the current markup standard on the web, it replaces HTML 4.0. You can think of it as a step closer to XML. Basically, XHTML is a more strict and structured form of HTML, and a much less forgiving language than HTML 4.0; especially when using it with stylesheets. Jeffrey Zeldman does a much better job of describing XHTML in his book, Designing with Web Standards, than I do. You can find all the information you ever wanted to know about XHTML in chapters 5 and 6 (pages 141-172).
Writing XHTML is not hard. If you can write HTML you will have no problems with XHTML. The hardest part will be breaking a few old habits. One very important thing to remember when writing XHTML, use the correct tags to properly mark-up your code. For instance, if it's a paragraph, surround it with paragraph tags. Don't just drop it on the page and put two break tags after it.
The first two rules have been take care of in the templates. The other rules pertain to how you will insert content.
<img src="flower.gif" alt="flower" />
<p><b>This is correct</b></p>
<b><p>This is INCORRECT</b></p>
Enough of this boring XHTML stuff, it's time to start Modifying the Nav Bar.
Insert a NASA fact here. Feel free to use a server side include or a back-end rotater.