files/en-us/web/html/reference/elements/code/index.md
The <code> HTML element displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code. By default, the content text is displayed using the {{Glossary("user agent", "user agent's")}} default monospace font.
{{InteractiveExample("HTML Demo: <code>", "tabbed-shorter")}}
<p>
The <code>push()</code> method adds one or more elements to the end of an
array and returns the new length of the array.
</p>
code {
background-color: #eeeeee;
border-radius: 3px;
font-family: "Courier New", monospace;
padding: 0 3px;
}
This element only includes the global attributes.
A paragraph of text that includes <code>:
<p>
The function <code>selectAll()</code> highlights all the text in the input
field so the user can, for example, copy or delete the text.
</p>
{{EmbedLiveSample("Example", 640, 70)}}
To represent multiple lines of code, wrap the <code> element within a {{HTMLElement("pre")}} element. The <code> element by itself only represents a single phrase of code or line of code.
A CSS rule can be defined for the code selector to override the browser's default font face. Preferences set by the user might take precedence over the specified CSS.
{{Specifications}}
{{Compat}}