-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2d.html
More file actions
50 lines (50 loc) · 944 Bytes
/
Copy path2d.html
File metadata and controls
50 lines (50 loc) · 944 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Frames Example</title>
</head>
<frameset rows="33%, 33%, 34%"
frameborder="0" framespacing="0">
<frame src="image.html"
name="image_frame" frameborder="0"
scrolling="no">
<frame src="paragraph.html"
name="paragraph_frame"
frameborder="0" scrolling="no">
<frame src="hyperlink.html"
name="hyperlink_frame"
frameborder="0" scrolling="no">
</frameset>
</html>
image.html
<!DOCTYPE html>
<html>
<head>
<title>Image Frame</title>
</head>
<body>
<img src="image.jpg" width="100%"
height="100%">
</body>
</html>
paragraph.html
<!DOCTYPE html>
<html>
<head>
<title>Paragraph Frame</title>
</head>
<body>
<p>This is a paragraph of text in the
second frame.</p>
</body>
</html>
hyperlink.html
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Frame</title>
</head>
<body>
<p><a href="(link unavailable)">Visit
(link unavailable)</a></p>
</body></html>