Monday, July 8, 2013

HTML5 Page Template

This is the bare minimum you need to write a HTML5 page:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
A little bit fancier, you want to specify the language and character set:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>

</body>
</html>

No comments:

Post a Comment