Tags

HTML 5 Demo 1

<!DOCTYPE html> <!– The DOCTYPE declaration defines the document type to be HTML–>
<html> <!– describes an HTML document–>
<head><!– provides information about the document –>
<title>Demo 1 By Prasad Sawant</title><!– provides a title for the document –>
</head>
<body><!– describes the visible page content –>
<h1>Demo 1</h1><!– H1 to H5 are describes a heading, NB no need to give break after heading –>
<h2>Demo 1</h2>
<h3>Demo 1</h3>
<h4>Demo 1</h4>
<h5>Demo 1</h5>

<p>The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.The browser does not display the HTML tags, but uses them to determine how to display the document:</p> <!– describes a paragraph–>

</body>
</html>