Reputation: 7
So i am working on creating my website from the scratch and i will like the users of my website to verify themselves by logging in. I have a different html script for the log in page. I will like the verify button on the prompt page to be linked to the login page but whn i use the <"/a">, what link do i put in there?? Newbie here haha. Will appreciate some help.
Upvotes: -2
Views: 71
Reputation: 137
I belive in the <a>
element, you put href for the link. For example;
<a href="url">random text</a>
, and to remove underline and font color, just do the css properties text-decoration:none;
& color:font-color;
Upvotes: 0