The basic flow of the HTML tags and how to use HTML tag in wen page. All HTML tags are used between the
<html></html> Html open and close tag. HTML tag is divided into two sections first one is HEAD section & second BODY section.
HEAD section example -
<!DOCTYPE>
<html> - HTML Starting Tag
<head>
<title>Page Title</title>
</head>
</html> - HTML End Tag
BODY section example -
<!DOCTYPE>
<html>
<body>
<article><h1></h1><p></p></article>
<aside></aside>
<footer></footer>
</body>
</html>