Syntax of code tag in HTML
Syntax of code tag in HTML
The <code> tag comes in pairs.
The content is written between
the opening (<code>) and closing (</code>) tags.
How to use < code > tag syntax in HTML
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<p>Ordinary text.</p>
<code>Line of program code.</code>
<p>Continuation of the ordinary text.</p>
</body>
</html>
Comments
Post a Comment