-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.html
More file actions
64 lines (60 loc) · 1.45 KB
/
media.html
File metadata and controls
64 lines (60 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>웹 프로그래밍 - JJS's 취향 소개</title>
</head>
<body>
<header>
<h1><center>JJS's 취향 소개</center></h1>
</header>
<hr />
<section>
<h2><center>가장 좋아하는 꽃</center></h2>
<center><img src="Flower.jpg" alt="설명 이미지" width="300" /></center>
<p>
<center>
<strong>복사꽃</strong> <br />꽃말 : 사랑의 노예, 행운, 행복
</center>
</p>
</section>
<hr />
<section>
<h2><center>가장 좋아하는 노래</center></h2>
<center>
<audio controls>
<source src="yours.mp3" type="audio/mpeg" />
</audio>
</center>
<p>
<center>
<strong>Yours (데이먼스 이어)</strong> <br />
노래 좋아요
</center>
</p>
</section>
<hr />
<section>
<h2><center>가장 좋아하는 노래 커버 영상</center></h2>
<center>
<iframe
width="300"
height="200"
src="https://www.youtube.com/embed/NZ4QNZRoV40"
allowfullscreen
></iframe>
</center>
<p>
<center>
<strong>Cover : Kim Gyeol</strong>
</center>
</p>
</section>
<hr />
<nav>
<p>
<center><a href="index.html">Home으로 돌아가기</a></center>
</p>
</nav>
</body>
</html>