adplus-dvertising
frame-decoration

Question

Following CSS code is written. Guess in which color link will be displayed if user has not clicked on any of the link before.
<style>
            a:link {
                color:#FF0000;
            }
            a:visited {
                color:#00FF00;
            }
            a:hover {
                color:#FF00FF;
            }
            a:active {
                color:#0000FF;
            }
        </style>

a.

#00FF00

b.

#FF0000

c.

#FF00FF

d.

#0000FF

Answer: (b).#FF0000

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Following CSS code is written. Guess in which color link will be displayed if user has not clicked on any of the link before.