used for computer code or any programming language code.
Example:
<html>
<body>
<pre>
<code>
var msz = 'Hello world';
alert(msz);
</code>
</pre>
</body>
</html>
Use <code> tag always with <pre> tag. Because <code> does not preserve spaces and line breaks.