Continue
Computer Code
Any programming code to appear on a Web page should inside <code>...</code>tags. Usually the content of the <code> element is presented in a monospaced font, just like the code in most programming books.be placed
Example
<!DOCTYPE html>
<html>
<head>
<title>Computer Code Example</title>
</head>
<body>
<p>Regular text. <code>This is code. </code> Regular text.</p>
</body>
</html>
This will produce the following result:
Regular text. This is code. Regular text.
Comments
Post a Comment