-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIframe.htm
66 lines (65 loc) · 2.94 KB
/
Iframe.htm
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML 4.0 TRANSITIONAL PUBLIC "_//w3c//dtd html 4.0//en">
<HTML>
<HEAD>
<LINK REL=STYLESHEET TYPE="TEXT/CSS" HREF="STYLES.CSS">
<TITLE> HTML Tutorial </TITLE>
</HEAD>
<body class="MIC">
<H1> IFRAME </H1>
This is to be used in the <SPAN CLASS= INTRO> <A HREF="BODY.HTM" TITLE= "Body-Contains the Formatting Tags. Its contents are displayed on the Browser"> BODY </A> </SPAN> Tag.
This Tag <SPAN CLASS="INTRO"> creates Floating or Inline Frames within a Document. </SPAN>
This is a Container Tag and thus has to be closed.
<H4> Attributes </H4>
<OL>
<LI CLASS="HAND"> FRAMEBORDER :
<SPAN CLASS= MAIN>Indicates whether the <SPAN CLASS= INTRO> Floating Frame has Visible
Border. </SPAN> 0 means NoBorder and 1 means Border. </SPAN>
<LI CLASS="HAND"> HEIGHT :
<SPAN CLASS= MAIN>Specifies the <SPAN CLASS= INTRO> Vertical Dimensions (in px.) of the
Floating Frame.</SPAN></SPAN>
<LI CLASS="HAND"> HSPACE :
<SPAN CLASS= MAIN>Specifies the <SPAN CLASS= INTRO> Size of Margins (in px.) to the Left and Right
of the Floating Frame.</SPAN></SPAN>
<LI CLASS="HAND"> MARGINHEIGHT :
<SPAN CLASS= MAIN>Specifies the size of the <SPAN CLASS= INTRO> Top and Bottom Margins (in px.) of the
Floating Frame.</SPAN></SPAN>
<LI CLASS="HAND"> MARGINWIDTH :
<SPAN CLASS= MAIN>Specifies the size of the <SPAN CLASS= INTRO> Left and Right Margins (in px.) of the
Floating Frame.</SPAN></SPAN>
<LI CLASS="HAND"> NAME :
<SPAN CLASS= MAIN>Assigns the Frame <SPAN CLASS= INTRO> A Unique Name. This is used to open a New
Document in the same Frame.</SPAN></SPAN>
<LI CLASS="HAND"> SCROLLING :
<SPAN CLASS= MAIN>Indicates whether the <SPAN CLASS= INTRO> Floating Frame has Scroll
Bars. </SPAN> NO means NoScrolling and Yes means Scrolling. </SPAN>
<LI CLASS="HAND"> SRC :
<SPAN CLASS= MAIN>Specifies the <SPAN CLASS= INTRO> Relative or Absolute URL of the
file to be loaded </SPAN> in the Floating Frame. </SPAN>
<LI CLASS="HAND"> VSPACE :
<SPAN CLASS= MAIN>Specifies the <SPAN CLASS= INTRO> Size of Margins (in px.) to the Top and Bottom
of the Floating Frame.</SPAN></SPAN>
<LI CLASS="HAND"> WIDTH :
<SPAN CLASS= MAIN>Specifies the <SPAN CLASS= INTRO> Horizontal Dimensions (in px.) of the
Floating Frame.</SPAN></SPAN>
</OL>
<H2> Syntax </H2>
<SPAN CLASS= MAIN> <IFRAME [FRAMEBORDER="{0,1}"] [HEIGHT="n"] [HSPACE="n"] [MARGINHEIGHT="n"]
[MARGINWIDTH="n"] [NAME="NAME"] [SCROLLING="{YES,NO}"] [SRC="URL"] [VSPACE="n"]
[WIDTH="n"]>
</IFRAME> </SPAN>
<H3> Example </H3>
<SPAN CLASS= MAIN> <IFRAME FRAMEBORDER="1" NAME="IFRM1" SCROLLING="YES"
SRC="IMAGES\ani.GIF">
<BR>
</IFRAME> </SPAN>
<H5> Effect </H5>
<IFRAME FRAMEBORDER="1" NAME="IFRM1" SCROLLING="YES"
SRC="IMAGES\ani.GIF">
</IFRAME>
<BR>
<BR>
<A HREF=" INTRO.HTM" TITLE="HTML Tutorial Home-Introduction to HTML"> Home </A>
<BR>
<A HREF=" ABOUT.HTM" TITLE="About HTML Tutorial"> About </A>
</BODY>
</HTML>