<html>
<head>
<style>
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<h2>Цвета ссылок</h2>
<p>Вы можете изменить цвета ссылок по умолчанию</p>
<a href="html_images.html" target="_blank">HTML Изображения</a>
</body>
</html>