-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 1.42 KB
/
index.html
File metadata and controls
59 lines (55 loc) · 1.42 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>내가 좋아하는 영화</title>
</head>
<body>
<h1>내가 가장 좋아하는 영화 3편</h1>
<ul>
<li>Iron Man 3</li>
<li>Doctor Strange (2016)</li>
<li>Inside Out</li>
</ul>
<p>
더 많은 영화 정보를 원하면 <a href="https://www.imdb.com/" target="_blank">IMDB</a> 또는
<a href="https://www.themoviedb.org/" target="_blank">TMDB</a>를 방문해보세요.
</p>
<table border="1">
<caption>표1. Top3 영화</caption>
<tr>
<th rowspan="2">순위</th>
<th colspan="3">영화 정보</th>
</tr>
<tr>
<th>제목</th>
<th>포스터</th>
<th>명대사</th>
</tr>
<tr>
<td>1</td>
<td>Iron Man 3</td>
<td>
<img src="ironman3.jpg" alt="Iron Man 3 포스터" width="150" height="220">
</td>
<td>"Unleash the power behind the armor."</td>
</tr>
<tr>
<td>2</td>
<td>Doctor Strange (2016)</td>
<td>
<img src="doctorstrange.jpg" alt="Doctor Strange 포스터" width="150" height="220">
</td>
<td>"Open your mind. Change your reality."</td>
</tr>
<tr>
<td>3</td>
<td>Inside Out</td>
<td>
<img src="insideout.jpg" alt="Inside Out 포스터" width="150" height="220">
</td>
<td>"Meet the little voices inside your head."</td>
</tr>
</table>
</body>
</html>