Use the <samp> tag to display a sample computer code. The HTML <samp> tag is used to display the output of a computer program.
Example
You can try to run the following code to implement <samp> tag in HTML −
<!Doctype html> <html> <head> <title>HTML samp Tag</title> </head> <body> <p>The header file always starts with <samp>#include</samp>.</p> </body> </html>