-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlec3ex1.html
More file actions
25 lines (20 loc) · 1.03 KB
/
lec3ex1.html
File metadata and controls
25 lines (20 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>하이퍼링크 연결</title>
</head>
<body>
<h2>하이퍼링크 예제</h2>
<a href = "https://naver.com" title = naver>들어가기</a>
<img src = "C:\Users\규민\Desktop\규민/IT_intro.jpg" width="70" height="50"><br/>
<img src = "C:\Users\규민\Desktop\규민/IT_intro.jpg" alt ="이미지 없음">
<figure>
<figcaption>[그림1] 책소개1</figcaption>
<img src = "C:\Users\규민\Desktop\규민/IT_intro.jpg" alt ="이미지 없음">
<figcaption>[그림1] 책소개2</figcaption>
</figure>
<audio controls src = "C:\Users\규민\Desktop\규민/song.mp3" loop autoplay></audio>
<video controls autoplay width = "360" height="240" src = "C:\Users\규민\Desktop\규민/bear.mp4">비디오를 재생할 수 없습니다.</video>
<iframe width = "360" height="240" src = "C:\Users\규민\Desktop\규민/bear.mp4">비디오를 재생할 수 없습니다.</iframe>
</body>
</html>