css_ex02.html 997 Bytes
<!DOCTYPE html>
<html lang="ko">
<head>
  <link rel="stylesheet" type="text/css" href="mystyle.css" />
  <meta charset="utf-8">
  <style>
    div.pagination {

    }

    a {
      background-color: #a0a0a0;
      color: #FFFFFF;
      padding: 10px;
      margin: 1px;
      text-decoration: none;
      float: left;
    }

    a:hover {
      background-color: #606060;
      color: #FFFF00;
    }

    a.direction {
        color: #FFFF00;
    }

    a.current {
      background-color: #1E90FF;
    }

  </style>
</head>
<body>
</br>
  <div class="pagination">
    <a href="#" class="direction"><span class='arrow'>&lsaquo;</span>이전</a>
    <a href="#">11</a>
    <a href="#">12</a>
    <a href="#">13</a>
    <a href="#">14</a>
    <a href="#" class="current">15</a>
    <a href="#">16</a>
    <a href="#">17</a>
    <a href="#">18</a>
    <a href="#">19</a>
    <a href="#">20</a>
    <a href="#" class="direction">다음 <span class='arrow'>&rsaquo;</span></a>
  </div>
</body>
</html>