HTML Was Simple

There was a time when you could write HTML in Notepad

<html>
    <head>
        <title>My Simple Webpage</title>
    </head>
    <body>
        <p>I can write anything I want here. Add some <b>bold</b> or
        <i>italics</i> text. For everything else, I'll send you to
        <a href="https://www.google.com">Google</a>!</p>
    </body>
</html>

which then looks like this:

I can write anything I want here. Add some bold or italics text. For everything else, I'll send you to Google!

This is foundational!