Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

Joseph Torres
Joseph Torres
6,281 Points

Question about adding an h1 tag within a div tag within a header or outside of the header

Here is my code:

<header> <div class="mainnav" id="mainnavlinks"> <h1>The Alureon Report</h1> <a href="home.html">Home</a> <a href="reports_&amp;_sightings.html" style="width: 131px;">Reports & Sightings</a> <a href="contact.html">Contact</a> <a href="about.html">About</a> </div> </header>

*Is this structure ok or should I use list items instead? When rendered, the h1 tag is always next to the nav bar. I just the h1 on the far left and the navigation bar almost centered on the same line or block level if I am saying that correctly. Here is the CSS:

header {width: 100%;} h1 { float: left; }

mainnavlinks {float: right;}