HTML5 tags not working at all in firefox 3.6.3
Posted
by William
on Stack Overflow
See other posts from Stack Overflow
or by William
Published on 2010-06-13T04:00:48Z
Indexed on
2010/06/13
4:02 UTC
Read the original article
Hit count: 318
Okay, so I'm trying to get into this whole HTML 5 thing, and this tutorial (http://www.webreference.com/authoring/languages/html/HTML5/) says that these tags should move the content around without any kind of CSS at all, but all I'm getting is a line of text that looks like this:
Header tag Nav tag Artical Section tags Aside tag footer tag
Here is the code:
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML5 test1</title>
<meta charset="utf-8" />
</head>
<body>
<header>
Header tag
</header>
<nav>
Nav tag
</nav>
<article>
<section>
Artical Section tags
</section>
</article>
<aside>
Aside tag
</aside>
<footer>
footer tag
</footer>
</body>
</html>
© Stack Overflow or respective owner