Showing
1 changed file
with
41 additions
and
0 deletions
ex05_2.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html lang="ko"> | ||
3 | +<head> | ||
4 | + <meta charset="utf-8"> | ||
5 | + <style> | ||
6 | + div.pagination{ | ||
7 | + margin: 15px; | ||
8 | + } | ||
9 | + .pagination a:link, a:visited{ | ||
10 | + text-decoration: none; | ||
11 | + color: black; | ||
12 | + //background-color: #5CD1E5; | ||
13 | + padding: 10px; | ||
14 | + } | ||
15 | + .pagination a:hover, a:active{ | ||
16 | + text-decoration: none; | ||
17 | + //color: #C8FFFF; | ||
18 | + color: white; | ||
19 | + border-radius:100px; | ||
20 | + background-color: #38ADC1; | ||
21 | + padding: 10px; | ||
22 | + } | ||
23 | + </style> | ||
24 | +</head> | ||
25 | +<body> | ||
26 | + <div class="pagination"> | ||
27 | + <a href="#" class="direction"> <span class='arrow'>‹</span>이전</a> | ||
28 | + <a href="#">11</a> | ||
29 | + <a href="#">12</a> | ||
30 | + <a href="#">13</a> | ||
31 | + <a href="#">14</a> | ||
32 | + <a href="#">15</a> | ||
33 | + <a href="#">16</a> | ||
34 | + <a href="#">17</a> | ||
35 | + <a href="#">18</a> | ||
36 | + <a href="#">19</a> | ||
37 | + <a href="#">20</a> | ||
38 | + <a href="#" class="direction">다음 <span class='arrow'>›</span></a> | ||
39 | + </div> | ||
40 | +</body> | ||
41 | +</html> |
-
Please register or login to post a comment