top of page
HTML5.png

HTML

TELETYPE OR TYPE WRITER TAG

  • This tag is used to display the text in a fixed width typewriter font.

  • This is a paired tag.

  • This tag is represented as <tt> tag.

  • Example:-                          

<html>

<head>

<title> TYPEWRITER </title>

</head>

<body>

<tt> LIFE IS BEAUTIFUL </tt>

</body>

</html>

​

OUTPUT:

teletype.JPG

STRIKE TAG

  • This tag is used to display the text with a horizontal line striking on it.

  • This is a paired tag.

  • This tag is represented as <strike> tag.

  • Example:-                          

<html>

<head>

<title> STRIKE  TAG</title>

</head>

<body>

PRICE:<strike>250</strike>149

</body>

</html>

​

OUTPUT:

strike.JPG

Related Topics

bottom of page