• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/34

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

34 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)
A section of the browser window capable of displaying the content of an entire Web Page.
Frame
A element describes how the frames are organized and displayed within the browser window.
Frameset
Describes which document is displayed within a frame.
Frame Element
What is the Syntax for creating a row or column frame layout.
<frameset rows="row1, row2,row3, ..."> ...</frameset>

or

<framest cols="column1,column2,column3, ..."> ... </frameset>
What 3 attributes of A frame can you Control?
* The Appearance

*Scroll Bars

*The size of the margin between the source document and frame border.
What are frames and why are they useful in displaying and designing websites?
A frame is a section of the browser window capable of displaying the contents of an entire Web page. Frames do no require the same information (such as a list of links ) to be repeated on multiple pages of a web site. they also allow a Web designer to update content in one place in order to affect an entire Web site.
Why is the <body> tag unnecessary for pages that contain frames?
Because there is no page body in a frame document. The frame document displays the content of other pages.
What HTML code do you use to create three rows of frames with height of the first row set to 200 pixels, the height of the second row set 50% of display.
<frameset rows="200,50%,*">...</frameset>
What html code do you use to specify home.htm as a source for a frame?
<frame src="home.htm />
What HTML Code do you use to remove the scroll bars from the frame for home.htm?
<frame src="home.htm"scrolling="no" />
What Html code do you use to set the size of the margin above and below the contents of the home.htm frame to 3 pixels?
<frame src="home.htm" marginheight="3" />
What is the size of the margins to the right and left of the frame in frame home.htm.
3 pixels
What code would you use to prevent users from moving the frame borders in the home.htm.
<frame src="home.htm" noresize="noresize" />
How do you Assign a name to a frame?
<frame src="url" name="name" />
What are special names that can be used in place of a frame name as targets?
Reserved target names
How do you set width?
<frame frameborder="value" />
When using Frame width 0 means what?
Hides the border
When using Frame width the 1 means what?
Displays value
How do you define the color of a border?
bordercolor="color"
What is displayed as a seperate box or window within a Web Page. This can be placeds within the Web Page in much the same way as an inline image.
Floating frame or inline frame.
When you click a link inside a frame, in what frame does the target Web page appear by default?
The frame containing the link
What attribute would you use to assign the name "address" to a frame?
name="Address"
What attribute would you use to point a link to the document "sales.htm". with the result that the sales.htm file is displayed in the entire browser window.
target="_top"
Describe what you would do to make a web page readable by browsers that support frames and by those that do not.
create a section starting the <noframes> tag. After the <noframes > tag enter a <body > tag to identify the test and the the image you want frame -blind browsers to display . Complete this section with a </body> tag followed by a </noframes> tag.
What attribute would you use to set the frame border color of every frame on the page to red?
<frameset bordercolor="red">
How would you set the frame border width to 5 pixels?
<frameset border="5">
What tag would you use to direct all links in a document to the "News" target?
target="news"
Special names that can be used in the place of a frame name as targets.
Reserved Target Names
Useful in situation where you want the name of the frame is unavailable.
Displayed as a seperate box or window?
floating frame or inline frame
The <***>tag specifies a default address or a default target for all links on a page.
<base> tag

Example
<head>
<base href="http://www.w3schools.com/images/" />
<base target="_blank" />
</head>

<body>
<img src="stickman.gif" />
<a href="http://www.w3schools.com">W3Schools</a>
</body>
The <****>tag defines one particular window (frame) within a frameset.
<frame> tag

Example<html>

<frameset cols="25%,50%,25%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
</frameset>

</html>
The <****> tag defines a frameset.
<frameset> tag

example<html>

<frameset cols="25%,*,25%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
</frameset>

</html>
The <****> tag is used for browsers that do not handle frames.
<noframes>

Example

<html>

<frameset cols="25%,50%,25%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
<noframes>
Sorry, your browser does not handle frames!
</noframes>
</frameset>

</html>
The <****> attribute specifies where to open the linked document.
The <target>

Example<a href="http://www.w3schools.com" target="_blank">Visit W3Schools</a>