• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>HTML Links</title>
7
​
8
    <style>
9
        a:link    { color: teal; }
10
        a:visited { color: maroon; text-decoration: none }
11
        a:hover   { color: yellow; text-decoration: none }
12
        a:active  { color: red; text-decoration: none }
13
    </style>
14
​
15
</head>
16
​
17
<body>
18
​
19
    <h1>링크의 상태</h1>
20
    <h2><a href="/html/intro">링크의 상태에 따라 스타일을 다르게 설정합니다!</a></h2>
21
​
22
</body>
23
​
24
</html>