Write a program in HTML to create Frameset.

Write a program in HTML to create Frameset.

<!DOCTYPE html>

<html>

<head>

<title>frameset</title>

</head>

<frameset rows="50%,*">

<frameset cols="*,*">

<frame src="frame1.html">

<frame src="frame2.html">

</frameset>

<frameset cols="*,*">

<frame src="frame3.html">

<frame src="frame4.html">

</frameset>

<noframes>

<body>

your browser does not support frame.pleasr see

</body>

</noframes>

</frameset>

</html>

 

Frame 1

<!DOCTYPE html>

<html>

<head>

          <title>frame1</title>

</head>

<body>

<h1>frame 1</h1>

</body>

</html>

Frame 2

<!DOCTYPE html>

<html>

<head><title>frame2</title>

</head>

<body>

<h1>frame 2</h1>

</body>

</html>

 

Frame 3

<!DOCTYPE html>

<html>

<head>

          <title>frame3</title>

</head>

<body>

<h1>frame 3</h1>

</body>

</html>

 

Frame 4

<!DOCTYPE html>

<html>

<head>

          <title>frame4</title>

</head>

<body>

<h1>frame 4</h1>

</body>

</html>

 

                     


Comments