Creating Hyperlinks Tasks 1-3

Can anyone evaluate my Creating Hyperlinks Tasks 1-3 (attached)? I copy/pasted from MDN’s tutorial not on github and codepen so there’s no for example.

<h1>Information on Whales</h1>

<p>For more information on our conservation activities and which Whales we study,
see our <a href="whales.html" 
           title="The page includes information on Blue Whales and Sperm Whales"
           target="_blank">Whales page</a>.</p>

<p>If you want to ask our team more questions, feel free to <a href="mailto:whales@example.com?subject=Question%20about%20Whales target="_blank">email us</a>.</p>
  
  <!-- Task Two -->
  <h1>List path tests</h1>

<ul>
  <li><a href="blue/blue-whale.jpg" target="_blank">Link me to the blue whale image</a></li>
  <li><a href="../narwhal/narwhal.jpg" target="_blank">Link me to the narwhal image</a></li>
  <li><a href="imghp/https://www.google.co.uk" target="_blank">Link me to Google image search</a></li>
  <li><a href="#bottom">Link me to the paragraph at the bottom of the page</a></li>
</ul> 

<div></div>

<p id="bottom">The bottom of the page!</p>
  <!-- Test Three-->
  
        <p>We do lots of work with Narwhals. <a href="narwhals.html" target="_blank">Find out more about this work (Opens in a new tab)</a>.</p>

      <p>You can <a href="mailto:whales@example.com">email our support team (Begins an email in a new window)</a> if you have any more questions.</p>

      <p>You can <a href="factfile.pdf" target="_blank">download our factfile (PDF, 4MB)</a>, which contains lots more information, including an FAQ.</p>

This is the same code as in your other topic, right?