English [freəmz] US [freəmz]

n.테두리(프레임의 복수명사);

HTML 노프레임 태그 통사론

기능: 요소는 프레임을 지원하지 않는 브라우저에 대한 텍스트를 표시할 수 있습니다.

설명: noframes 요소는 프레임셋 요소 내부에 있습니다.

참고: 브라우저에 프레임을 처리할 수 있는 기능이 있으면 프레임세트 요소의 텍스트가 표시되지 않습니다.

HTML 노프레임 태그 예

<html>

<frameset cols="25%,50%,25%">
  <frame src="//m.sbmmt.com/example/html/frame_a.html">
  <frame src="//m.sbmmt.com/example/html/frame_b.html">
  <frame src="//m.sbmmt.com/example/html/frame_c.html">

<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>

</frameset>

</html>