-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.html
80 lines (75 loc) · 1.74 KB
/
board.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<style>
body>div{
position: relative; top: 100px; left:100px;
border: 1px solid gray;
border-radius: 8px;
width:550px;
padding:20px;
}
table.type04 {
border-collapse: separate;
border-spacing: 1px;
text-align: left;
line-height: 1.5;
border-top: 1px solid #ccc;
margin : 0px;
}
table.type04 th {
width: 150px;
padding: 10px;
font-weight: bold;
vertical-align: top;
border-bottom: 1px solid #ccc;
}
table.type04 td {
width: 350px;
padding: 10px;
vertical-align: top;
border-bottom: 1px solid #ccc;
}
a{
color:rgb(93,93,93);
text-decoration-line: none;
}
a:hover{
color:black;
font-size: 16.3px;
}
</style>
</head>
<body>
<h1 style="text-align:center; padding-top:60px">BOARD</h1>
<div>
<table class="type04">
<tr>
<th scope="row">1</th>
<td><a href="./board_file/1.html">웹디자인 트렌드를 살펴보다</a></td>
</tr>
<tr>
<th scope="row">2</th>
<td><a href="./board_file/2.html">html과 css의 상관관계</a></td>
</tr>
<tr>
<th scope="row">3</th>
<td><a href="./board_file/3.html">css를 공부하며...</a></td>
</tr>
<tr>
<th scope="row">4</th>
<td><a href="./board_file/4.html">flex를 잘 쓰려면</a></td>
</tr>
<tr>
<th scope="row">5</th>
<td><a href="./board_file/5.html">js로 만드는 동적인 웹</a></td>
</tr>
<tr>
<th scope="row">6</th>
<td><a href="./board_file/6.html">중앙정렬이 어려워요</a></td>
</tr>
</table>
</div>
</body>
<html>