You want your XHTML to semantic. That means you use tags only where they intent to be used, so that everything has a clear structure and the XHTML gets meaningful. Even without CSS applied. Here are some things you should know:
Use H1 – H6 for headings
For sure you have headings in your document. You can structure everything by headings. But please don’t do the mistake and use just
<div class="heading">TITLE</div>
.
For example, use H1 for the first-level heading of your webpage:
Continue reading Concentrate on semantics