-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu2.html
86 lines (74 loc) · 2.42 KB
/
menu2.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
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>My Life</title>
<meta charset="UTF-8">
<style type="text/css">
div {background-color: #FFE0F7; padding-top: 10px; padding-bottom: 50px;}
table {border-color: #FFE0F7; border-radius: 5px; width: 800px; margin-left: 50px;
background-image: url(http://mm.sookmyung.ac.kr/~it2013716/images/hellokitty.png); background-repeat: no-repeat; background-position: right bottom; }
caption {font-weight: bold;}
img {width: 100%; opacity: 0.3;}
a:link {color: #ff3db2}
a:visited {color: #b83dff}
</style>
</head>
<body>
<div>
<h1> My Life</h1>
<ul>
<li><a href="#first">나의 어린시절</a></li>
<li><a href="#second">나의 학창시절</a></li>
<li><a href="#third">나의 현재</a></li>
</ul>
</div>
<pre>
</pre>
<a id="first"></a><table border="5">
<caption>❤어린시절❤</caption>
<tr>
<th>출생</th><td>(개인정보보호)</td>
</tr>
<tr>
<th>1~4살</th>
<td><br>(개인정보보호)<br><br></td>
</tr>
<tr>
<th>5~7살</th>
<td><br>(개인정보보호)<br><br></td>
</tr>
</table>
<pre>
</pre>
<a id="second"></a><table border="5">
<caption>❤학창시절❤</caption>
<tr>
<th>초등학생</th>
<td><br>(개인정보보호)<br><br></td>
</tr>
<tr>
<th>중학생</th>
<td><br>(개인정보보호)<br><br></td>
</tr>
<tr>
<th>고등학생</th>
<td><br>(개인정보보호)<br><br></td>
</tr>
</table>
<pre>
</pre>
<a id="third"></a><table border="5">
<caption>❤현재❤</caption>
<tr>
<th>1</th>
<td><br>(개인정보보호)<br><br></td>
</tr>
<tr>
<th>2</th>
<td><br>(개인정보보호)<br><br></td>
</tr>
</table>
<pre>
</pre>
</body>
</html>