What is Html5 ?
Hypertext Markup Language revision 5 (HTML5) is markup language for the structure and presentation of World Wide Web contents. HTML5 supports the traditional HTML and XHTML-style syntax and other new features in its markup, New APIs, XHTML and error handling
Html5 Basic Structure
/* Html5 Basic Structure... */
<!DOCTYPE html>
<html>
<head>
<title>Title of the Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
Body Content
</body>
</html>

