-2

My professor in an assignment wants us to list our education by colleges/highschools. He specifically states "Enclose the above <h3> inside of an <a> element with the fully qualified URL of the school’s main website as the href and set the target attribute to _blank. By enclose, I mean place the <a> tag immediately before the <h3> and the </a> immediately after the </h3>." I do exactly as stated and it does not work, and creates a "target ="_blank" text below two other <a> elements in <nav>. This line of code is written in <main>.

I expected a <h3> that is hyperlinked to my University homepage, that displays my University name on it.

j08691
  • 204,283
  • 31
  • 260
  • 272

1 Answers1

-1

Did you do it like this?

<a href="https://github.com/" target="_blank">
  <h3>GitHub</h3>
</a>

<a href="https://stackoverflow.com/" target="_blank">
  <h3>Stack Overflow</h3>
</a>

<a href="https://www.linkedin.com/feed/" target="_blank">
  <h3>LinkedIn</h3>
</a>

I've tested and it worked; if that's not it, please provide more details and i'll try to help you.

Dave Newton
  • 158,873
  • 26
  • 254
  • 302
Lucas da Paz
  • 21
  • 1
  • 5