-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday25_0513_html_css.html
More file actions
54 lines (47 loc) · 1.25 KB
/
day25_0513_html_css.html
File metadata and controls
54 lines (47 loc) · 1.25 KB
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
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<!-- 주석문: 자바스크립트 코드(함수 매서드 정의)삽입방법 -->
<script>
function goBack() {
window.history.back();
}
</script>
<h1>H1... 나는 팰릭스</h1>
<h2>H2... 나는 팰릭스</h2>
<h3>H3... 나는 팰릭스</h3>
<h4>H4... 나는 팰릭스</h4>
<h5>H5... 나는 팰릭스</h5>
<h6>H6... 나는 팰릭스</h6>
<img src="./_static/_img/Felix.png" width=150><br> [그림1]. <a href='http://www.daum.net'>팰릭스캣</a><br><br>
<button onclick="goBack()">뒤로가기</button><br><br>
<table>
<td colspan=2>
<tr>
<!-- unordered list : 숫자없는 리스트-->
<ul>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
</ul>
</tr>
</td>
<td colspan=2>
<tr>
<!-- ordered list : 숫자있는 리스트 -->
<ol>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
<li>나는 팰릭스</li>
</ol>
</tr>
</td>
</table>
</body>
</html>