• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>CSS Links</title>
7
    <style>
8
        a:link, a:visited {
9
            background-color: #FFA500;
10
            color: maroon;
11
            padding: 15px 25px;
12
            text-align: center; 
13
            text-decoration: none;
14
            display: inline-block;
15
        }
16
        a:hover, a:active { background-color: #FF4500; }
17
    </style>
18
</head>
19
​
20
<body>
21
​
22
    <h1>링크를 활용한 버튼</h1>
23
    <p><a href="/index.php" target="_blank">홈으로 가기!</a></p>
24
​
25
</body>
26
​
27
</html>