
- HTML Home
- HTML Roadmap
- HTML Introduction
- HTML History & Evolution
- HTML Editors
- HTML Basic Tags
- HTML Elements
- HTML Attributes
- HTML Headings
- HTML Paragraphs
- HTML Fonts
- HTML Blocks
- HTML Style Sheet
- HTML Formatting
- HTML Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Frames
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Code Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Table Headers & Captions
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB & RGBA Colors
- HTML - HEX Colors
- HTML - HSL & HSLA Colors
- HTML - HSL Color Picker
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - Document Object Model (DOM)
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Character Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML <samp> tag
Introduction to <samp> Tag
The HTML <samp> tag stands for sample output. It is used to enclose inline text that represents the sample output from a computer program or a script. By default, its contents will be displayed in the browser in a mono-space font.
To change the style and font of the <samp>s tag content, we can use the CSS properties to override the browser's default font.
Syntax
Following is the syntax of <samp> tag −
<samp>.....</samp>
Example: Creating Sample Element
In the following example, we see the usage of the <samp> tag in an HTML document. This HTML code uses the <samp> tag to display a humorous error message. Running the code will generate an output displaying the text on the webpage.
<!DOCTYPE html> <html> <body> <p> I was trying to boot my computer, but I got this hilarious message: </p> <p> <samp> Keyboard not found <br>Press F1 to continue </samp> </p> <body> </html>
Example: Styling Sample Element
Here, we create an HTML document using the <samp> tag, and CSS properties to override the default font style. This HTML code displays sample output text in bold, italic, and courier font style. Running the code will generate an output window that displays the text with the applied CSS on the webpage.
<!DOCTYPE html> <html> <head> <style> samp { font-weight: bold; font-family: courier; font-style: italic; } </style> </head> <body> <p> When the process is complete, the utility will output the text <samp>Scan complete. Found <em>N</em> results. </samp> You can then proceed to the next step. </p> <body> </html>
Example: Using <kbd> with <samp> Tag
Let's look at the following example, we nest the <kbd> tag within a <samp> block to present text entered by the user. Consider the text as a transcript of Linux(or macOS) console session.
<!DOCTYPE html> <html> <head> <style> .prompt { color: #b00; } samp>kbd { font-weight: bold; } .cursor { color: #00b; } </style> </head> <body> <pre> <samp> <span class="prompt">John@interwebz:~$</span> <kbd>md5 -s "Hello world"</kbd> MD5 ("Hello world") = 3e25960a79dbc69b674cd4ec67a72c62 <span class="prompt">John@interwebz:~$</span> <span class="cursor"></span> </samp> </pre> </body> </html>
Tag | ![]() | ![]() | ![]() | ![]() | ![]() |
---|---|---|---|---|---|
samp | Yes | Yes | Yes | Yes | Yes |