HTML tables
HTML tables
Out of context: Reply #36
- Started
- Last post
- 36 Responses
- ukit0
Basically the idea is that every piece of markup is supposed to be appropriate to its content.
The thing is that in reality there are few elements that are all that useful for adding meaningful markup to a document. So people basically ended up using divs for everything.
HTML5 will be much different and you will end up coding something more like:
<body>
<header>
<h1>logo</h1>
</header>
<section>
<header>
<h1>section name</h1>
</header>
<p>content</p>
</section>
<footer>
copyright 2011
</footer>
</body>