<!-- Use the following code to help customize a link's color or
text. -->
<a></a> <!-- This tag will start the creation of a link -->
<a href=""></a> <!-- The "href" tag within <a href=""></a>
is used to specify the link adress, put
whatever link you need inside the "href"
tag. -->
<a href="https://www.codegrepper.com/app/profile.php?id=7056">
my profile</a> <!-- Inbetween <a> and </a> tags, you can put
what you want your custom link to appear as -->
<!-- Using CSS you can customize the colors of your links!
If you want you can add an Id to the link to make it
seperate colors from the rest.
Example: -->
<a href="https://www.w3schools.com/css/css_link.asp">
Website</a>
<style>
/* The color of the link */
a:link {
color:blue;
}
/* The color of the link when the mouse is hovered over it */
a:hover {
color:cyan;
}
/* When link has been visited */
a:visited {
color:green;
}
/* When link is clicked/selected */
a:active {
color:orange;
}