<!DOCTYPE html>
<html>
  <head>
    <title>Intro HTML - 02</title>
  </head>
  <body>


    <p>
      Web pages can contain links to other pages.
      <a href="https://www.uc.pt/en">
        This links to the University of Coimbra's main site.
      </a>
    </p>

    <p>
      <a href="http://www.ed.uc.pt/educ/curso?id=247">
        This links the Web-based Virtual Reality Environments course.
      </a>
    </p>

    <h2>
      Section title
    </h2>

    <img src="https://cdn.glitch.com/80978ab7-9db6-45ae-bc43-4fab16bdbb6e%2F360_0017%5B1%5D_Stitch_YHC.JPG?v=1524066879942" width="400">    

    <h2 style="color:red; background-color:blue">
      Section title
    </h2>
  </body>
</html>