frameset tag in html

Solutions on MaxInterview for frameset tag in html by the best coders in the world

showing results for - "frameset tag in html"
Leanne
23 Jan 2021
1<!DOCTYPE html>
2<html>
3
4   <head>
5      <title>HTML Frames</title>
6   </head>
7	
8   <frameset rows = "10%,80%,10%">
9      <frame name = "top" src = "/html/top_frame.htm" />
10      <frame name = "main" src = "/html/main_frame.htm" />
11      <frame name = "bottom" src = "/html/bottom_frame.htm" />
12   
13      <noframes>
14         <body>Your browser does not support frames.</body>
15      </noframes>
16      
17   </frameset>
18   
19</html>