Article

Chapter 4 CSS Assignment1


Change the anchor link using CSS: We can change the anchor link CSS and the hover CSS, as shown in the example below.

Example:-

<html>

<head>

<style>

a{color:grey;text-decoration:none}

a:hover{color:blue;text-decoration:underline;background-color:orange;font-weight:bold}

</style>

</head>

<body bgcolor=yellow>

<h1><a href="https://www.google.com/">Google Page Link</a></h1>

</body>

</html>



Result:-