HTML is the standard markup language for creating web pages.
Current HTML version is HTML5.
Standard Syntax of HTML5 is following:
<!DOCTYPE html>
<html>
<head>
<title> Title for top of address bar </title>
</head>
<body>
<!--HTML Tags and content to display on webpage-->
</body>
</html>