Computer >> Computer tutorials >  >> Programming >> HTML

How to create teletype text in HTML?


The HTML <tt> tag specifies teletype text. You can try to run the following code to learn how to include an anchor in HTML −

Note −This tag is not supported in HTML5.

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML tt Tag</title>
   </head>
   <body>
      <p>Qries</p>
      <tt>Knowledge for all</tt>
   </body>
</html>