ex05_2.html 898 Bytes
<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="utf-8">
  <style>
  div.pagination{
    margin: 15px;
  }
  .pagination a:link, a:visited{
    text-decoration: none;
    color: black;
    //background-color: #5CD1E5;
    padding: 10px;
  }
  .pagination a:hover, a:active{
    text-decoration: none;
    //color: #C8FFFF;
    color: white;
    border-radius:100px;
    background-color: #38ADC1;
    padding: 10px;
  }
  </style>
</head>
<body>
  <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="#">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>