HTML creating tables
HTML creating tables
Aim:
Write a HTML program, to explain the working of
frames, such that page is to be divided into 3 parts on either
direction. (Note: first frame image, second frame paragraph,
third frame hyperlink. And also make sure of of using “no
frame” attribute such that frames to be fixed).
Description:
Code:
<html>
<head>
<title>
frameset
</title>
</head>
<frameset rows="30%, 40%,30% " border="2">
<h3>image frame</h3>
<frame src="imagef.html" name="frame1" scrolling="no" />
<h3>paragraph frame</h3>
<frame src="paraf.html" name="frame2" scrolling="auto" />
<h3>link frame</h3>
<frame src="linkf.html" name="frame3" scrolling="auto"/>
</frameset>
<noframes>
<body>
<p>
sorry! your browser does not support frames.
</p>
</body>
</noframes>
</html>
Output:
By clicking the link