0% found this document useful (0 votes)
36 views6 pages

Assignment No. 16 Frames

This document contains code for creating HTML frames. The first code sample divides the browser window into quarters with two rows and two columns and links different HTML files to each frame. The second code sample divides the browser window into quarters with four equal rows and links different HTML files to each frame. Both code samples create a basic HTML document structure with <html>, <head>, and <frameset> tags to divide and link external content pages into a multi-frame layout.

Uploaded by

Rubal Singh
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views6 pages

Assignment No. 16 Frames

This document contains code for creating HTML frames. The first code sample divides the browser window into quarters with two rows and two columns and links different HTML files to each frame. The second code sample divides the browser window into quarters with four equal rows and links different HTML files to each frame. Both code samples create a basic HTML document structure with <html>, <head>, and <frameset> tags to divide and link external content pages into a multi-frame layout.

Uploaded by

Rubal Singh
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Assignment

No. 16

FRAMES
Output
Coding

<html>

<head>

<title> creating frames</title>

</head>

<frameset rows="50%,50%" cols="50%,50%">

<frame src="formatting tags.html">

<frame src="Pre Tag.html">

<frame src="lists.html">

<frame src="table.html">

</frameset>

</html>
Assignment
No. 17

FRAMES
2
Output
Coding

<html>

<head>

<title> creating frames</title>

</head>

<frameset rows="25%,25%,25%,25%">

<frame src="formatting tags.html">

<frame src="pre tag.html">

<frame src="lists.html">

<frame src="table.html">

</frameset>

</html>

You might also like