Posts

Showing posts from January, 2021

Frameset in HTML

Image
 We can merge two website by Frameset. The HTML <frameset> tag is used to divide the window into frames . This tag is not supported in HTML5. Creating Frames To use frames on a page we use <frameset> tag instead of <body> tag. The <frameset> tag defines, how to divide the window into frames. The rows attribute of <frameset> tag defines horizontal frames and cols attribute defines vertical frames. Each frame is indicated by <frame> tag and it defines which HTML document shall open into the frame. Code for Frameset- <!DOCTYPE html> <html>    <head>       <title>HTML Frames</title>    </head>    <frameset rows = "10%,80%,10%">       <frame name = "top" src = "/html/top_frame.htm" />       <frame name = "main" src = "/html/main_frame.htm" />       <frame name = "bottom" src = "/html/bottom_frame.htm" /...