| View previous topic :: View next topic |
| Author |
Message |
the the the Master Cheater
Reputation: 46
Joined: 15 Jun 2008 Posts: 429
|
Posted: Fri Nov 19, 2010 8:41 pm Post subject: html help [Solved] |
|
|
What the fuck?
http://fludded.net/dcave.html
Nothing loads past the first <iframe ...>, on firefox 3.6 win7, and my friends computer. Only one iframe appears, when there should be eight. I tried switching links, and that didn't help. Anyone know what's wrong?
Source:
| Code: | <html>
<title>DragCave Eggs</title>
<body bgcolor="#000000">
<iframe src="http://dragcave.net/view/PcC6" height="16" width="16"><br><iframe src="http://dragcave.net/view/H9uK" height="16" width="16"><br><iframe src="http://dragcave.net/view/G88P" height="16" width="16"><br><iframe src="http://dragcave.net/view/SnJR" height="16" width="16"><br><iframe src="http://dragcave.net/view/vc9l" height="16" width="16"><br><iframe src="http://dragcave.net/view/YAl0" height="16" width="16"><br><iframe src="http://dragcave.net/view/f53s" height="16" width="16"><br><iframe src="http://dragcave.net/view/PdK7" height="16" width="16"><br>
<br><br>
<a href='http://dragcave.net/view/H9uK'><img src='http://dragcave.net/image/H9uK.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/PcC6'><img src='http://dragcave.net/image/PcC6.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/G88P'><img src='http://dragcave.net/image/G88P.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/SnJR'><img src='http://dragcave.net/image/SnJR.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/YAl0'><img src='http://dragcave.net/image/YAl0.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/vc9l'><img src='http://dragcave.net/image/vc9l.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/f53s'><img src='http://dragcave.net/image/f53s.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/PdK7'><img src='http://dragcave.net/image/PdK7.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<!--
H9uK
PcC6
G88P
SnJR
vc9l
YAl0
f53s
PdK7
-->
</body>
</html> |
Last edited by the the the on Fri Nov 19, 2010 9:01 pm; edited 1 time in total |
|
| Back to top |
|
 |
gogodr I post too much
Reputation: 125
Joined: 19 Dec 2006 Posts: 2041
|
Posted: Fri Nov 19, 2010 8:43 pm Post subject: |
|
|
you need to close them
</iframe>
try this
| Code: | <html>
<title>DragCave Eggs</title>
<body bgcolor="#000000">
<iframe src="http://dragcave.net/view/PcC6" height="16" width="16"><br></iframe>
<iframe src="http://dragcave.net/view/H9uK" height="16" width="16"><br></iframe>
<iframe src="http://dragcave.net/view/G88P" height="16" width="16"><br></iframe>
<iframe src="http://dragcave.net/view/SnJR" height="16" width="16"><br></iframe>
<iframe src="http://dragcave.net/view/vc9l" height="16" width="16"><br></iframe>
<iframe src="http://dragcave.net/view/YAl0" height="16" width="16"><br></iframe>
<iframe src="http://dragcave.net/view/f53s" height="16" width="16"><br></iframe>
<iframe src="http://dragcave.net/view/PdK7" height="16" width="16"><br></iframe>
<br><br>
<a href='http://dragcave.net/view/H9uK'><img src='http://dragcave.net/image/H9uK.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/PcC6'><img src='http://dragcave.net/image/PcC6.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/G88P'><img src='http://dragcave.net/image/G88P.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/SnJR'><img src='http://dragcave.net/image/SnJR.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/YAl0'><img src='http://dragcave.net/image/YAl0.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/vc9l'><img src='http://dragcave.net/image/vc9l.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/f53s'><img src='http://dragcave.net/image/f53s.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<a href='http://dragcave.net/view/PdK7'><img src='http://dragcave.net/image/PdK7.gif' style='border-width: 0' alt='Adopt one today!'/></a>
<!--
H9uK
PcC6
G88P
SnJR
vc9l
YAl0
f53s
PdK7
-->
</body>
</html> |
Last edited by gogodr on Fri Nov 19, 2010 8:44 pm; edited 1 time in total |
|
| Back to top |
|
 |
Aniblaze Grandmaster Cheater Supreme
Reputation: 138
Joined: 23 Apr 2006 Posts: 1757 Location: The Netherlands
|
Posted: Fri Nov 19, 2010 8:44 pm Post subject: |
|
|
| An iframe is a horrible, horrible HTML functionality. Never use, ever.
|
|
| Back to top |
|
 |
gogodr I post too much
Reputation: 125
Joined: 19 Dec 2006 Posts: 2041
|
Posted: Fri Nov 19, 2010 8:45 pm Post subject: |
|
|
| Augustine wrote: | | An iframe is a horrible, horrible HTML functionality. Never use, ever. | I like it. and it comes pretty handy in some situations.
|
|
| Back to top |
|
 |
the the the Master Cheater
Reputation: 46
Joined: 15 Jun 2008 Posts: 429
|
Posted: Fri Nov 19, 2010 8:49 pm Post subject: |
|
|
| gogodr wrote: | you need to close them
</iframe>
try this
| Ahh shit, thanks.
[EDIT]So I'm guessing that whatever is in between the tags is what is displayed if the frame doesn't get displayed/whatnot? (Like alt-)
|
|
| Back to top |
|
 |
Aniblaze Grandmaster Cheater Supreme
Reputation: 138
Joined: 23 Apr 2006 Posts: 1757 Location: The Netherlands
|
Posted: Fri Nov 19, 2010 8:55 pm Post subject: |
|
|
| gogodr wrote: | | Augustine wrote: | | An iframe is a horrible, horrible HTML functionality. Never use, ever. | I like it. and it comes pretty handy in some situations. |
Back in 1995, when we didn't have alternatives that stand for better access. The only time when an iframe should even be considered, is when the entire website is in HTML, and nothing else. But even then it's not great.
|
|
| Back to top |
|
 |
Maes Advanced Cheater
Reputation: 10
Joined: 09 Apr 2009 Posts: 50
|
Posted: Fri Nov 19, 2010 8:56 pm Post subject: |
|
|
Don't get what you're using iFrame for. If you're trying to make them hit an egg to make them view your egg, just do this;
Yours:
<a href='http://dragcave.net/view/H9uK'><img src='http://dragcave.net/image/H9uK.gif' style='border-width: 0' alt='Adopt one today!'/></a>
Better:
<a href="http://dragcave.net/view/H9uK"><img src="http://dragcave.net/image/H9uK.gif" /></a>
[Better] No border:
<a href="http://dragcave.net/view/H9uK"><img src="http://dragcave.net/image/H9uK.gif" border=0 /></a>
|
|
| Back to top |
|
 |
the the the Master Cheater
Reputation: 46
Joined: 15 Jun 2008 Posts: 429
|
Posted: Fri Nov 19, 2010 9:03 pm Post subject: |
|
|
| Rokurai wrote: | Don't get what you're using iFrame for. If you're trying to make them hit an egg to make them view your egg, just do this;
Yours:
<a href='http://dragcave.net/view/H9uK'><img src='http://dragcave.net/image/H9uK.gif' style='border-width: 0' alt='Adopt one today!'/></a>
Better:
<a href="http://dragcave.net/view/H9uK"><img src="http://dragcave.net/image/H9uK.gif" /></a>
[Better] No border:
<a href="http://dragcave.net/view/H9uK"><img src="http://dragcave.net/image/H9uK.gif" border=0 /></a> |
I'm using it so I can.. Give the egg 2 views and a click. The iframe loads the page you would have to click, so it saves them time from clicking 8 links.
|
|
| Back to top |
|
 |
|