Learning how to make Links on html,

Tell us what’s happening:

Code evening all,

Am a new member and a new entrant in programming, I want to have a career change from banking to coding.

Never knew anything about programming but am determined to make the best of it.
I am presently starting up with html web development language as I was told that is the starting point for all programmers.

I need assistance on how to create a LINK

Your code so far

<h1>Hello World</h1>
<h2>catphotoApp</h2>```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/headline-with-the-h2-element

You add text in between the a tag.
example 1:

<a href="http://example.com" target="_blank">Hello World</a>

You can have other tags, in this case it is h1, within the a tag. The different attributes of a tag can be found here.
example 2:

<a href="http://example.com" target="_blank"><h1>Hello World</h1></a>

Even images can be a link.
example 3:

<a href="http://example.com" target="_blank"><img src="https://s3.amazonaws.com/freecodecamp/freecodecamp-logo-icon-square-400-400.png"></a>