Even though Alot of people dont like them, I do lol It's mostly what I use to make my websites. You can have as many iframes as you want.
If you want to make it a certain width or height use the following:Code:<iframe src="yourpage.html" name="NAME"> </iframe>
If you want an IFrame to appear in another frame use the following:Code:<iframe src="yourpage.html" name="NAME" height="100" width="100"> </iframe>
Naming the IFrame is an easy way to target your pages. the one above would appear in the same frame. You can always change name of the target. but make sure you have an iFrame with that name.Code:<iframe src="yourpage.html" name="NAME" target="NAME">
*Edit is below this.
if you want a transparent iFrame use the following:
on every source page you must include the following:Code:<iframe src="yourpage.html" name="NAME" target="NAME" allowtransparency="true" background-color="transparent"> </iframe>
Code:<style type="text/css">
body {background-color: transparent}
</style>