
Originally Posted by
dusty
Okay, first of all, is it even possible to have IFrames in Geocities?
geocities does support Iframes.

Originally Posted by
dusty
If so, how would I go about coding it, when I haven't coded other things on my site, I just use the Pagebuilder tools Geocities provides. Is there a code I can copy and edit to fit my personal pages?
With a bit learning of HTML you can easily incorporate the Iframe in your page.
A very simple example is below
Code:
<iframe src="http://www.google.com" height="150" width="100%" frameborder="0"></iframe>
you can check this site for getting more details about Iframes

Originally Posted by
dusty
Also, I think I've gotten a basic understanding of putting two pages into one (which would be the whole point of an IFrame)...but I have a navigation bar outside of the IFrame, so how would I make it so if you click a link outside the IFrame, the page shows up within the IFrame.
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<a href="http://www.yahoo.com" target="if1">yahoo</a> | <a href="http://www.google.com" target="if1">google</a> |
<br><br>
<iframe src="http://www.google.com" frameborder="0" height="280" width="100%" name="if1"></iframe>
</body>
</html>
I think from the above example you can find it out
Bookmarks