In order to make a piece of text turn into a link, you’ll need to replace the <p> with an <a href=””> and put the link you wish you link the text yo inside the quotes! Here is an example, this text will take you to the main page of this website!
<a href=”https://wpsiteteam.com/”>This is a link to the main page!</a>
This is a link to the main page!
You can also make the links open in a separate page instead of overriding the page you are on. You do so by adding target=”_blank” in the a href! Here is an example in text and an example to test!
<a href=”https://wpsiteteam.com/” target=”_blank”>This is a link to the main page!</a>