HTML Structured Tag

An HTML document begins with a DOCTYPE declaration that declares the version of HTML to which the document belongs.
The HTML element tag follows and contains the HEAD and BODY.

The HEAD tag contains information about the document, such as its title and keywords, while BODY tag contains the actual content of the document, made up of block-level elements and inline elements.

<!DOCTYPE html>
<HTML>
              <HEAD>
                        <TITLE>The document title</TITLE>
              </HEAD>
<BODY>
<P>A paragraph</P>
</BODY>
</HTML>

also see

C Programming language
Go Programming language
Linked List Array
Stack Queue
Puzzle Reasoning
Aptitude Simplification
Previous articleLinked List Insertion Set 1
Next articleHTML Page with 7 Separate Lines in Different Colors

LEAVE A REPLY

Please enter your comment!
Please enter your name here