top of page
HTML5.png

HTML

BASIC TAGS USED IN ANY HTML DOCUMENT

HTML Tag

  • This tag defines the complete HTML document.

  • The HTML document starts with <html> tag and ends with </html> tag.

​

Syntax:

<html>

.........

.........

.........

</html>

​

HEAD Tag & TITLE Tag

  • <head> tag  is used to represent the document header.

  • <title> tag is used inside the <head> tag to contains the title of the document.

  • Title should be short (less than 64 characters).

  • The contents of the head are not displayed directly on the web page.

​

Syntax:

<head>

<title>

The title is included here

</title>

</head>

BODY Tag

  • <body> tag represents the document body, which keeps other HTML tags like heading, paragraph, list, etc...

​

Syntax:

<html>

<head>

<title>

The title is included here

</title>

</head>

<body>

The body is included here

</body>

</html>

Related Topics

bottom of page