I spent a couple of hours looking over other .mobi sites focusing on travel-related sites. One consistency I noticed about all sites is that the first page generally contains a list of links. With limited screen space and slow connections this makes plenty of sense.
I want the site to be a quick and easy to use resource for air travelers. Below is the initial site with source code shown below. If this design becomes finalized I will add in the META tags and clean-up this code to make sure it is optimized for search engines.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<html>
<body>
<div id = "header">
<!– Header –>
<img src = "logo.gif">
</div> <div id = "content">
<font face = "arial, helvetica" size = "2">
<ol>
<li><a href = "about.html" accesskey = "1">About Us</a></li>
<li><a href = "airlines.html" accesskey = "2">Contact Airline</a></li>
<li><a href = "track.html" accesskey = "3">Track Flight</a></li>
<li><a href = "secrets.html" accesskey = "4">Travel Secrets</a></li>
<li><a href = "firstclass.html accesskey = "5">Get First Class</a></li>
<li><a href = "contact.html" accesskey = "6">Contact Us</a></li>
</ol>
</font>
</div> <div id = "footer">
<!– Footer –>
<img src = "bottom.gif"><br>
<font face = "arial, helvetica" size = "1">
<a href = "privacy.html">Privacy</a> | <a href = "ad.html">Advertise</a>
</font>
</div>
</body>
</html>
