-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.28.html
More file actions
79 lines (68 loc) · 2.22 KB
/
1.28.html
File metadata and controls
79 lines (68 loc) · 2.22 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>0128 html 연습</title>
</head>
<body>
<h1>0128 html practice <small>by Jaesung</small></h1>
<p> <!--Escape Code-->
x가 정수이고 x<5 이면서 x>3 이다. x=4이다. <br>
I am Jaesung.<br>
I am Jaesung.<br>
Copyright©<br>
M&M <br>
</p>
<p> <!--Text Formatting-->
<b>Bold text</b> <br>
<strong>important text</strong> <br>
<i>Italic text</i> <br>
<em>em</em>
<p><del>50,000원</del> 20,000원</p>
<p>
매일 팔굽혀펴기는 <del>50회</del> <ins>2회</ins> 실시한다.
</p>
</p>
<p>
오늘 <mark>점심메뉴</mark>의 가격은 <strong>20,000원</strong>이었지만 <em>맛이 없었습니다.</em>
</p>
<P>
20<sub>2</sub>
</P>
<del>
<p>매일 팔굽혀펴기는 50회2회 실시한다.</p>
</del>
<ins>
<p>매일 팔굽혀펴기는 50회2회 실시한다.</p>
</ins>
<p> <!--Quotations-->
다음은 소설 소나기의 한 부분입니다.</p>
<blockquote>
이 바보 조약돌이 날아왔다. 소년은 저도 모르게 벌떡 일어났다.
</blockquote>
<q>
이 바보
조약돌이 날아왔다. 소년은 저도 모르게 벌떡 일어났다.
</q>
<p> <!--Abbreviations, Contact Information-->
<abbr title="World Health Organization">WHO</abbr>
<address>
Written by John Doe.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
</p>
<p><!--Work Title-->
<cite>The Scream</cite> by Edvard Munch. Painted in 1893.
</p>
<p><!--Bi-Directional Override-->
This text will be written from right to left <br>
<bdo dir="rtl">This text will be written from right to left</bdo>
</p>
<!--주석 처리는 습관화 합시다!-->
</body>
</html>