<tt> HTML Tag

In this article we will discuss about how to use the tt tag in HTML.
  • 2563

The <tt> tag stands for teletype. It is used to show the text in the form of teletype format. Means it is used to show monospaced text.

HTML Code:

<html>

<head>

    <title></title>

</head>

<body>

    The tt tag in HTML is used to show the text<br>

    <tt>in different format</tt> The tt tag stands for<br>

    <tt>teletype</tt>.

</body>

</html>

 

Output:

The tt tag in HTML is used to show the text
in different format The tt tag stands for
teletype
.

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.