Summary -

In this topic, we described about the <tt> tag along with detailed example.

The <tt> tag is not supported in HTML5. Teletype text in HTML document. The <tt> tag used to specify the teletype text.

Syntax -

<tt>.... </tt>

Example -

<!DOCTYPE html>
<html>
	<head>
		<title>TT tag example.. </title>
	</head>
	<body>
		<p>Normal text display.</p>
		<p><tt>Teletype text</tt></p>
	</body>
</html>

Output -

Normal text display.

Teletype text