-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path28.html
More file actions
52 lines (47 loc) · 2.17 KB
/
28.html
File metadata and controls
52 lines (47 loc) · 2.17 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
<!--HTML 框架-->
<!--通过使用框架,你可以在同一个浏览器窗口中显示不止一个页面。-->
<!DOCTYPE html>
<html lang="en">
<!--本例演示如何制作含有三份文档的框架结构,同时将他们混合置于行和列之中。-->
<!--<frameset rows="50%,50%">
<frame src="/example/html/frame_a.html">
<frameset cols="25%,75%">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>
</frameset>-->
<!--本例演示 noresize 属性。在本例中,框架是不可调整尺寸的。在框架间的边框上拖动鼠标,你会发现边框是无法移动的。-->
<!--<frameset cols="50%,*,25%">
<frame src="/example/html/frame_a.html" noresize="noresize" />
<frame src="/example/html/frame_b.html" />
<frame src="/example/html/frame_c.html" />
</frameset>-->
<!--本例演示如何制作导航框架。导航框架包含一个将第二个框架作为目标的链接列表。名为 "contents.htm" 的文件包含三个链接。-->
<!--<frameset cols="120,*">
<frame src="/example/html/html_contents.html">
<frame src="/example/html/frame_a.html" name="showframe">
</frameset>-->
<!--本例演示两个框架。其中的一个框架设置了指向另一个文件内指定的节的链接。这个"link.htm"文件内指定的节使用 <a name="C10"> 进行标识。-->
<!--<frameset cols="20%,80%">
<frame src="/example/html/frame_a.html">
<frame src="/example/html/link.html#C10">
</frameset>-->
<!--本例演示两个框架。左侧的导航框架包含了一个链接列表,这些链接将第二个框架作为目标。
第二个框架显示被链接的文档。导航框架其中的链接指向目标文件中指定的节。-->
<frameset cols="180,*">
<frame src="/example/html/content.html">
<frame src="/example/html/link.html" name="showframe">
</frameset>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<!--本例演示如何创建内联框架(HTML 页中的框架)。-->
<!--
<iframe src="/i/eg_landscape.jpg"></iframe>
<p>一些老的浏览器不支持 iframe。</p>
<p>如果得不到支持,iframe 是不可见的。</p>
-->
</body>
</html>