<frame src="">
Browser |
|
---|
The FRAME element defines a frame.
This element is placed inside the FRAMESET element.
<frame src="example.html">
Attribute | Value | Explanation |
---|---|---|
src=" " | URL | the URL of the page to display in the frame |
Example
<html>
<head>
<title>TAG index</title>
</head>
<frameset cols="200,*">
<frame src="example_a.html">
<frame src="example_d.html">
<noframes>
<body>
<p>Alternate content</p>
</body>
</noframes>
</frameset>
</html>
- Output
-
Example page
<html>
<head>
<title>TAG index</title>
</head>
<frameset rows="100,*">
<frame src="example_a.html">
<frame src="example_d.html">
<noframes>
<body>
<p>Alternate content</p>
</body>
</noframes>
</frameset>
</html>
- Output
-
Example page