• Hey all, due to some issues ith some false DMCAs, we've had to censor a few things until the situation is resolved. Sorry for any inconvenience
  • Be sure to join the discussion on our discord at: Discord.gg/serebii
  • If you're still waiting for the e-mail, be sure to check your junk/spam e-mail folders

HTML linking/pic help

SuperShadow the Hedgehog

Well-Known Member
When I make a link for my website (animobile.funpic.org, for reference), or insert a picture, the picture doesn't appear or the link is broken, however the image/page does exist. I check the link and it appears as animobile.an.funpic.org/animobile.an.funpic.org/xxxx. When I type it correctly in my HTML editors (WebWrite Pro HTML Editor and CoffeeCup Free HTML Editor).

Can some help me?
 

Magma Leader Maxie

Non caedor caedo
You have to use URIs for page links:

http://www.example.com

instead of

www.example.com

If you don't do this, the browser will try and find a page called "www.example.com" in the current directory.
 

DigitalKaede

HAHAHAHAHAHAHA NO!
Basically:

Incorrect:

Code:
<a href="www.serebii.net">VISIT SEREBII</a>

Correct:

Code:
<a href="http://www.serebii.net">VISIT SEREBII</a>
 

SuperShadow the Hedgehog

Well-Known Member
For some reason, my website doesn't work when I use 'www.' on the beginning. So, I just hosted my images on Photobucket, which generates code, and inserted that. It works perfectly, too. For navigational links, I'll use tinyurl.com.
 
Top