HTML - <tt> Tag


Description

The HTML <tt> tag specifies teletype text. This is not supported in HTML5.

Example

<!DOCTYPE html>
<html>

   <head>
      <title>HTML tt Tag</title>
   </head>

   <body>
      <p>tutorialspoint</p>
      <tt>learning website</tt>
   </body>

</html>

This will produce the following result −

Global Attributes

This tag supports all the global attributes described in − HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in − HTML Events Reference

Browser Support

Chrome Firefox IE Opera Safari Android
Yes Yes Yes Yes Yes Yes
html_tags_reference.htm
Advertisements