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 |