Im new to programming..Can anybody help me out please ….
im using an html to display an image later i want to display another html on the first html so i need to set second html as transparent. so the image in the first html looks like a background image….
is it possible…?
Thanks
Well you actually could use an
<iframe>containing the second page in a floating<div>-element. But as always, it’s not always good just because it exists or because it was technically possible.Except for the use of frame, you should never have more than one
<html>and never more than one<body>It would be the best to have something like this:
Sure you could extract the css-part into a css-file. And you could set the style-attribute for another tag as well, it doesn’t forcibly has to be
<body>hope that helps a bit.