Quotes, keyboard input, code text, and the like can be written semantically. In technical tutorials, <code>, <pre> come in super handy.
<blockquote>— long quotes<q>— short quotes<code>— inline code<pre>— for showing a code block without losing spacing/line breaks
html
<blockquote>Learning HTML is the first step to building the web.</blockquote>
<p>Use <code><h1></code> for the main heading.</p>
<pre><code><p>Code block example</p></code></pre>You should see
You'll see a quote, inline code, and a code block each styled distinctly.