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