Friday 2 December 2011

HTML Tutorial - 13

How to create a mixed frameset of rows and columns in Html Script ?

Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.
 
  

<html>

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

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

</frameset>

</html>

Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see like the below picture in your browser
Mixed Frame sets in rows and columns

No comments:

Post a Comment

Newest