iframes for dummies

Could anyone explain to an html novice why the first iframe in the following sequence doesn't work (and if I only have one iframe, it doesn't work).

Thanks in advance. Ian

<p>Test</p>
<p> 1st Frame
<br>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
<br>
<p> 2nd Frame
<p>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
<br>
<p> 3rd Frame
<p>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
<br>
<p> 4th Frame
<p>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></frame>

This works on my computer (Win XP) in both Firefox (20.0.1) and IE
(8.0). You have some mistakes in your code, which might cause problems
for some browsers. The "<p>" tag needs a closing tag of "</p>." You have
a lot of opening "<p>" tags with no corresponding closing "</p>" tags. I
suspect that might be your issue. I am guessing different browser might
handle the error differently.

···

On 4/29/2013 3:37 PM, bowringi wrote:

<p>Test</p>
<p> 1st Frame
<br>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
<br>
<p> 2nd Frame
<p>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
<br>
<p> 3rd Frame
<p>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
<br>
<p> 4th Frame
<p>
<iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></frame>

Art,

Thanks, I’m just going to beat my head against a wall for a while. For an hour I’ve tried every permutation, and always got a file not found message for the first iframe:

http://f1.grp.yahoofs.com/v1/2Px-URpG3g_TSfL0H3aPeTYeP5Dn0JSPcekViVjpaIpavuaDPNWd7TNXaL_7XTMMTYzdgy4IKvqSz0CFzF55c3T-CpRWQQ/iframe%20for%20dummies.pdf

I post the message, vow to keep well clear of HTML, see your response, then without changing anything it works…

···

From: Art Engel

Sent: Monday, April 29, 2013 11:52 PM

To: sailwave@yahoogroups.com

Subject: Re: [sailwave] iframes for dummies

This works on my computer (Win XP) in both Firefox (20.0.1) and IE
(8.0). You have some mistakes in your code, which might cause problems
for some browsers. The “

” tag needs a closing tag of “

.” You have
a lot of opening “

” tags with no corresponding closing “

” tags. I
suspect that might be your issue. I am guessing different browser might
handle the error differently.

On 4/29/2013 3:37 PM, bowringi wrote:

Test

1st Frame

2nd Frame


3rd Frame


4th Frame

Try quoting your attributes.

<iframe src="http://sailwave.com/results/waterwags2013.htm" width="1000" height="1000" frameborder=1></iframe>

···

--- In sailwave@yahoogroups.com, "Ian Bowring" <bowringi@...> wrote:

Art,

Thanks, I’m just going to beat my head against a wall for a while. For an hour I’ve tried every permutation, and always got a file not found message for the first iframe:
http://f1.grp.yahoofs.com/v1/2Px-URpG3g_TSfL0H3aPeTYeP5Dn0JSPcekViVjpaIpavuaDPNWd7TNXaL_7XTMMTYzdgy4IKvqSz0CFzF55c3T-CpRWQQ/iframe%20for%20dummies.pdf
I post the message, vow to keep well clear of HTML, see your response, then without changing anything it works.....

From: Art Engel
Sent: Monday, April 29, 2013 11:52 PM
To: sailwave@yahoogroups.com
Subject: Re: [sailwave] iframes for dummies

This works on my computer (Win XP) in both Firefox (20.0.1) and IE
(8.0). You have some mistakes in your code, which might cause problems
for some browsers. The "<p>" tag needs a closing tag of "</p>." You have
a lot of opening "<p>" tags with no corresponding closing "</p>" tags. I
suspect that might be your issue. I am guessing different browser might
handle the error differently.

On 4/29/2013 3:37 PM, bowringi wrote:
> <p>Test</p>
> <p> 1st Frame
> <br>
> <iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
> <br>
> <p> 2nd Frame
> <p>
> <iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
> <br>
> <p> 3rd Frame
> <p>
> <iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></iframe>
> <br>
> <p> 4th Frame
> <p>
> <iframe src="http://sailwave.com/results/waterwags2013.htm" width=1000 height=1000 frameborder=1></frame>