You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
654 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<style>
a:link {
color: red;
text-decoration: none;
}
a:visited {
color: yellow;
}
a:hover {
color: orange;
text-decoration: none;
}
a:active {
background-color: green;
text-decoration: underline;
}
</style>
</head>
<body>
<h2>Hyper link attributes</h2>
<a href="https://www.naver.com">네이버</a>
<hr>
<a href="https://www.google.com">구글</a>
</body>
</html>