the new <, &, and > symbols
Anything between and after < > will be treated as code. So you can’t use those convenient keys on your keyboard. You’ll need to use HTML entities such as:< for < (less than sign)
> for > (greater than sign)
In this example I’ll be using the inline element: <b></b>.
It’ll look like this:
<b> I'm trapped! </b>
Then turns into this:
<b> Get me out of this box! </b>
And that’s it! Using < and > makes it super easy to show code on your blog without it running. Perfect for tutorials, guides, or any post where you’re trying to showcase HTML code. It’s some pretty simple code for a handy feature.

