IMG-LOGO

Build your first HTML5 document

andy - 03 Aug, 2013 3612 Views 0 Comment

To create a HTML5 is pretty straight forward. What you have to do is to include this specific doctype <!DOCTYPE HTML> at the beginning of your document.

The <!DOCTYPE HTML> type does not have to be uppercase, it can be lower-case, no restriction of case sensitive in HTML5.

See below example of HTML5 document.

<!doctype html>
<html>
	<head>
		<title>My First HTML5 document</title>
	</head>
	<body>
		<h1>Heading content</h1>
		<p>The content of your website</p>
	</body>
</html>	

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Blogs

Related Tutorials