HTML Links - Different Colors By default, a link will appear like this (in all browsers): An unvisited link is underlined and blue A visited link is underlined and purple An active link is underlined and red Link is what it looks like normally, so on our page it would normally appear as green. It's just a normal link waiting to be clicked on. aLink changes the color of the link when you click on it, so after clicking on it, it changes from green to blue because it's Active. aLink = Active link. vLink is the color the link becomes *after* you close the new window, so it becomes red to let you know you've already Visited it. vLink= Visited link. <html> <head> <title> Links in HTML </title> </head> <body link="green" vLink="red" aLink="blue"> Let's go to <a href=" www.google.com ">Google!</a> </body> </html> HTML Headings HTML headings are defined with the <h1> ...