HTML
HTML - 프레임
yes or yes
2017. 8. 14. 14:58
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> 초간단 테이블 </title>
</head>
<frameset rows = "30%,70%">
<frame name = "top" src = "Mail.html"></frame> //Mail.html을 불러온다
<frame name = "body" src = "table.html"></frame> //table.html을 불러온다
</frameset>
</html>
반응형