Friday, December 13, 2013

HTML5 --- Been using HTML since HTML and HTML 4.01 and decided to take training on www.w3schools.com

Looks like it will be a good course.


The HTML5 <!DOCTYPE>

In HTML5 there is only one <!doctype> declaration, and it is very simple:
<!DOCTYPE html>


Minimum HTML5 Document

Below is a simple HTML5 document, with the minimum of required tags:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>

<body>
Content of the document......
</body>

</html>

No comments: