Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How do we add a sample computer code in HTML?
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>
Advertisements
