Viewing HTML

I want to be able to view HTML in a note in the format shown in the image… Obviously Obsidian can use HTML as well as Markdown to format content, so when I paste some HTML into a note, it assumes I’m trying to format something, but I just want to see and work on HTML I’m using for my website. Backticks don’t seem to work… TIA for any suggestions (ignore what the HMTL in the image is trying to do, it’s just an example of HTML format..)

https://help.obsidian.md/syntax#Code+blocks

```html
<html>
<head>
    <title>Page Title</title>
</head>

<body>
    <a href="https://www.HeyYa.org" target="_blank">HeyYa!</a>
</body> 
</html>
```

Thank you! It was the html after the first backticks that I was missing…