top of page
HTML5.png

HTML

BIG TAG

  • This tag is used to display the text in larger size than the normal size of the text.

  • It is a paired tag.

  • This tag is represented as <big> tag.

  • Example:-                          

<html>

<head>

<title> BIG TAG </title>

</head>

<body>

<big> LIFE</big> IS <big> BEAUTIFUL</big>

</body>

</html>

​

OUTPUT:

bigtag.JPG

SMALL TAG

  • This tag is used to display the text in smaller size than the normal size of the text.

  • It is a paired tag.

  • This tag is represented as <small> tag.

  • Example:-                          

<html>

<head>

<title> SMALL TAG </title>

</head>

<body>

<small> LIFE</small> IS <small> BEAUTIFUL</small>

</body>

</html>

​

OUTPUT:

smalltag.JPG

MARQUEE TAG

  • This tag is used for text blinking.

  • This tag is used to display the text in a web page with scrolling effect.

  • This is a paired tag.

  • This tag is represented as <marquee> tag.

  • Example:-                          

<html>

<head>

<title> MARQUEE TAG </title>

</head>

<body>

<marquee> WELCOME TO THE CLASS OF IT </marquee>

</body>

</html>

​

OUTPUT:

marqueetag.JPG

SUBSCRIPT TAG

  • This tag is used to display the text below the normal line.

  • This is a paired tag.

  • This tag is represented as <sub> tag.

  • Example:-                          

<html>

<head>

<title> SUBSCRIPT </title>

</head>

<body>

H<sub>2</sub>O

</body>

</html>

​

OUTPUT:

ubscripttag.JPG

SUPERSCRIPT TAG

  • This tag is used to display the text above the normal line.

  • This is a paired tag.

  • This tag is represented as <sup> tag.

  • Example:-                          

<html>

<head>

<title> SUPERSCRIPT </title>

</head>

<body>

X<sup>2</sup>Y

</body>

</html>

​

OUTPUT:

superscripttag.JPG

Related Topics

bottom of page