-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML_basic3.html
More file actions
58 lines (34 loc) · 776 Bytes
/
HTML_basic3.html
File metadata and controls
58 lines (34 loc) · 776 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>HTML Basic Page</title>
</head>
<body>
<h1><b>Lorem ipsum dolor sit amet</b></h1>
<h1><i>Lorem ipsum dolor sit amet</i></h1>
<h1><sup>Lorem ipsum dolor sit amet</sup></h1>
<h1><sub>Lorem ipsum dolor sit amet</sub></h1>
<h1><ins>Lorem ipsum dolor sit amet</ins></h1>
<h1><del>Lorem ipsum dolor sit amet</del></h1>
<ruby>
<span>
대한민국
</span>
<rt>
만 세!
</rt>
</ruby>
<br/>
<h1>Ol tag</h1>
<ol>
<li>Facebook</li>
<li>Tweeter</li>
<li>Linked In</li>
</ol>
<ul>
<li>Facebook</li>
<li>Tweeter</li>
<li>Linked In</li>
</ul>
</body>
</html>