Sociology, asked by rutuja5, 1 year ago

for floating frame ____ tag is used

Answers

Answered by nanditagupta
16
<body> tag is used for floating frame
Answered by lovingheart
1

<iframe> tags are used to create a floating frame. It is placed inside the <body> tag. It is used to create inline frame region. This acts very similar to the embedded objects which makes it float.

<html>

<head> </head>

<body>  

 <iframe src = www.w3school.com>

  <p> Opening w3school </p>

 </iframe>

</body>

</html>

There are several other attributes for an iframe viz, align, frameborder, height, longdesc, name, scrolling, srcdoc, marginheight, marginwidth, etc.

Similar questions