We want to show an SVG avatar of the patio11bot, so we'll do that in three ways:
Using an img
tag - which is easy, but doesn't let us access the internal SVG elements.
Copy/pasting the SVG directly into the HTML document. That works great, but is really messy in the code
Using an object
tag to embed the SVG directly into the web page. We'll choose this solution because it's tidy, and also because it allows us to access the internal SVG elements.