Posts

Showing posts from April, 2021

HTML | Frameset Tag | Attributes

Image
In our previous blog  Frameset Tag , we already learnt about Frameset tag and its 2 attributes - cols and rows. Here we will learn about few more attributes: bordercolor :               With this attribute, you can specify color of border between frames.           example :              <html>      <frameset cols="20%,30%,*" bordercolor=Red> <frame src="frame1.html"> <frame src="frame2.html"> <frame src="frame3.html">      </frameset>           </html>          Output : frameborder  :             With this attribute, you can specify whether border between frames should displayed or not.               It can take 2 values,  0 - No border 1 - Border                          example :           <html>      <frameset cols="20%,30%,*" bordercolor=Red frameborder=0> <frame src="frame1.html"> <frame src="frame2.html"> <frame src=&qu