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

HTML <samp> Tag


The <samp> tag in HTML is a phrase tag like <em>, <code>, <strong>, etc and is used to format text in an HTML document. It is also used to display output from a computer program.

Let us now see an example to implement the <samp> element−

Example

<!DOCTYPE html>
<html>
<body>
<h2>OS issues</h2>
<p>If the system hangs...</p>
<samp>Press CTRL + ALT + DELETE and delete the current tasks.</samp>
</body>
</html>

Output

HTML <samp> Tag

In the above example, we have set the text inside the <samp> tag−

<samp>
Press CTRL + ALT + DELETE and delete the current tasks.
</samp>