Photoshop graphic
Windows : Posts : 44 Join date : 2010-12-22
| Subject: HTML Frame Fri Dec 31, 2010 4:18 am | |
| HTML frame: Two Column Frameset : - Code:
-
<html> <head> <title>Frameset page<title> </head> <frameset cols = "25%, *"> <frame src ="frame_example_left.html" /> <frame src ="frame_example_right.html" /> </frameset> </html>
The left frame (frame_example_left.html):<html> <body style="background-color:green"> <p>This is the left frame (frame_example_left.html).</p> </body> </html>
The right frame (frame_example_right.html):<html> <body style="background-color:yellow"> <p>This is the right frame (frame_example_right.html).</p> </body> </html>
|
|
Abeer Admin
Windows : Posts : 62 Join date : 2010-12-22 Age : 34 Location : India
| Subject: Re: HTML Frame Fri Dec 31, 2010 4:54 am | |
| I Appreciate your work.... |
|