1.

We know that an HTML document contains two sections head and body section. While designing a web page as follows what will happen?

Answer»

<html>

<head>

</head>

<body>

<frameset cols=”50%,*”>

<frame src=”page1 .html” noresize> <frame src=”page2.html”>

</frameset>

</body>

</html>

There is no output because a <frameset> tag has no body tag. It is very important. So

the correct code is as follows,

<html>

<head>

</head>

<frameset cols=”50%,*”>

<frame src=”page1 .html” noresize>

<frame src=”page2.html”>

</frameset>

</html>



Discussion

No Comment Found