Open In App

HTML | <xmp> tag

Improve
Improve
Like Article
Like
Save
Share
Report

The <xmp> tag is used to create any content as letter format. Any text content between this <xmp> tag will display as the user type in the code section, same width, same position ending everything will be displayed as a replica of typed format or style. 

Note: It is not supported in html5.

Syntax:

<xmp> statement </xmp>

Attribute: This tag does not contain any attribute. 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML &lt;xmp&gt; Tag</title>
    <style>
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>HTML &lt;xmp&gt; tag</h2>
    </center>
    <xmp>
HTML tags are hidden keywords and used to create web pages in different format.
      Most of the tags contain two parts, opening tags and closing tags.
    </xmp>
 
</body>
 
</html>


Output:

  

Supported Browsers: The browsers supported by HTML <xmp> tag are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Last Updated : 30 May, 2022
Like Article
Save Article
Share your thoughts in the comments
Similar Reads