8 December 2015

Forums: 

A HTML page has several parts.

Type of Decoration

<!DOCTYPE html>

Comment
Not show on the Browser

<!-- example.html by Revelationbd.com -->

 

Opening TAG

<html>
<html lang= “en”>
<head>
<meta charset = “UTF-8”/>

Title Tag
Show Text on the Browser Title Bar.
<title>

Close Tag
If you put some Open Tag then you need to put a Close tag too.
</title>
</body>
</html>

 

Example 

<!DOCTYPE html>
<!-- structure example.html by Revelationbd.com -->

<html lang='en'>
<head>
    <meta charset="UTF-8" /> 
    <title>
        HTML Document Structure
    </title>
    <link rel="stylesheet" type="text/css" HREF="main.css" />
</head>
<body>

<h1>
    HTML Document Structure
</h1>
<p>
    This is a simple HTML document. 
</p>

</body>
</html>