-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
55 lines (39 loc) · 1.19 KB
/
test.html
File metadata and controls
55 lines (39 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>hello</h1>
<p style="text-align: center;">Isn't it a problem?</p>
<hr>
<br>
<b>bold</b>
<strong>strong</strong>
<i>italic</i>
small <small>small</small>
<sup>super</sup>
<mark>highlight</mark>
<img src="https://news.samsungdisplay.com/wp-content/uploads/2018/08/8.jpg" width="100" height="100">
<!-- YouTube 동영상을 삽입할 때는 iframe을 사용하는 것이 일반적입니다. -->
<iframe width="560" height="315" src="https://www.youtube.com/embed/lwbJHlLm-ts" frameborder="0" allowfullscreen></iframe>
<ul>
<li> gd</li>
<li> dg</li>
</ul>
<ol>
<li>df</li>
<li> gd</li>
</ol>
<table border="1" align = "center">
<tr> <td>1*1</td> <td>1*2</td></tr>
<tr> <td>2*1</td> <td>2*2</td></tr>
</table>
<a href = 'https://youtu.be/lwbJHlLm-ts'> 유튜브 링크 </a>
<p style="color: blue">Parent
<em style = "font-size: 12px;"> Child </em>
</p>
</body>
</html>