cityStatic
Seasoned Veteran
Well, I do agree that iFrames are somewhat retarded, but I'll just do this to show you how easy they are to make (my first tut! yay!).
You start out with a .html document.
Add in your needed stuff.
Your code should look somewhat like this:
Then you add in the following code between <body> and </body>
Now, you should have this.
Congratulaitons! You made your first iframe.
Something to show you that code works: http://files.imanga.org/iframe.html
You start out with a .html document.
Add in your needed stuff.
Your code should look somewhat like this:
Code:
<html>
<body>
</body>
</html>
Then you add in the following code between <body> and </body>
Code:
<iframe src ="SOME WEBSITE HERE!" width="100%" height="100%">
<p>Your browser does not support iframes.</p>
</iframe>
Now, you should have this.
Code:
<html>
<body>
<iframe src ="SOME WEBSITE HERE!" width="100%" height="100%">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
Congratulaitons! You made your first iframe.
Something to show you that code works: http://files.imanga.org/iframe.html







