1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>figure 태그 활용</title>
</head>
<body>
<h3>figure 태그 활용</h3>
<hr>
<figure id="1-1"> // figure은 본문에 삽인된 그림을 블록화하는 시맨틱 태그이다
    <figcaption>alert() 함수 활용</figcaption> // <figcaption>태그는 제목
    <pre>
    <code>function f() { alert("경고합니다"); }</code>
    </pre>
    <hr>
    <small>실행결과</small>
    <pre>
        <img src="media/alert.png" alt="실행결과">
    </pre>
 
</figure>
</body>
</html>
 
cs





 

Posted by 너래쟁이
: