Nahid Hossain

Nahid Hossain

Web Application & Software Developer

HTML5 : The Basic Page Formation

HTML5 does not follow any strict formation like previous versions. But for better validation and backward compatibility in cross browser environment I will follow a traditional formation of HTML.

<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>HTML 5 : The Basic Format</title>
</head>
<body>
<p>
   This is a test paragraph. This block of code snippet shows 
   the basic html5 formation should be followed
</p>
</body>
</html>

Explanation:

The very first line declares the type of the document. Unlike other html and xHtml languages HTML5 does not contains a html verson number here.

 

The Markup Language has two basic parts, head and body. They are enclosed by <html> tag.

 

<meta charset=utf-8> – this line indicate which set of characters will be used through the document.

 

Title tag Set the Page Title.

 

<p>> means a paragraph open tag.

 

If you have understanding what is tag opening and closing, my next article will be html tag.

 

Testing the above code
Open notepad or any text browser, write the above block of code and save as test1.html. Remember to put a .html after the filename.Now double click or open in any browser and see what happens.

 

 

Leave A Comment

Your email address will not be published. Required fields are marked *