Posts

Showing posts with the label HTML frameset Tag

frameset tag in html with example

Image
frameset tag in html with example It is used to specify the amount of spacing between the frames in a  Framese t  This can take value  integer  as parameter  which basically denotes  the value in pix  frameset tag in html with example   Example   <! Doctype html > <!Doctype html> < html > < frameset rows = "1,2" cols = "1,2" > < frame src = "frame_1.html" >   < frame src = "frame_2.html" >   < frame src = "frame_3.html" > < frame src = "frame_4.html" >   </ frameset > </html> frameset tag in html with example   Explain Program Step 1 ] <!Doctype html> <!doctype html>  always be the  first line  of any HTML document. Step 2 ]    <html>  and  </html>    html  is the  root element . Step 3 ] <body>  and  </body> body  is  main ...

What is the html Frame Tag

Image
          HTML   Frame TAG   Frames allows a developer to divide the browser window in such a way that many web-pages can be loaded at the same time and each of which can display a different HTML document. Or we can say that The HTML frameset and frame elements were used to create page layouts in which certain content remained visible while other content was scrol. HTML Frames   use to divide the web browser window into multiple sections, each section can be loaded separately. A frameset tag is the collection of the frames in the browser window. 1)<frameset>  tag considers the entire browser window as a set of many frames.<frame> tag along with src attribute is used to launch a particular page in a particular frame. The <frameset> Tag Attributes 2) Columns  It is basically used to define the number of columns and its size inside the frameset tag. Or we can say that It is used to create vertical frames in web br...