HTML Help!

MacGyverMacGyver Canada New
edited June 2004 in Internet & Media
Well, you see, i'm trying to make myself a webpage, and am having a hard time with links. For some reason, this does not want to work, even though the link is right.

<a href="information.">
<img src="info.gif" align=left
</a>

When I click on the button, it doesn't do anything. What am I doing wrong?

(P.S. I took off the "html" from information, because it made it a link on here. ;D

Comments

  • shwaipshwaip bluffin' with my muffin Icrontian
    edited June 2004
  • MacGyverMacGyver Canada New
    edited June 2004
    It kept making links, so i'll just say what I was doing.
    I was using the <a href=" "> </a> tag, and it doesn't seem to want to work. Any ideas?
  • Park_7677Park_7677 Missouri Member
    edited June 2004
    You can use the PHP code tags and show HTML.

    [PHP] HTML HERE [/PHP]
  • KwitkoKwitko Sheriff of Banning (Retired) By the thing near the stuff Icrontian
    edited June 2004
    You're doing relative links, but because you're posting on S-M, they're relative to here. If you want to show the code and link to the information.html page on your own site, you need to do:
    &lt;a href="http://www.mypagehere.com/information.html">&lt;img src="http://www.mypagehere.com/info.gif" align="left" />&lt;/a>
    

    Unfortunately, because VB parses any HTML in posts, you can't see it, unless you use HTML code for the brackets- that is &lt; and &gt; to represent < and >, respectively.
  • MacGyverMacGyver Canada New
    edited June 2004
    Thanks guys!
    The links work now, but there's one problem.
    Now the pictures that you click on (the links) have this blue boxed in square around them, that look really bad. How can I get rid of it?
  • KwitkoKwitko Sheriff of Banning (Retired) By the thing near the stuff Icrontian
    edited June 2004
    Add a border="0"
    &lt;a href="http://www.mypagehere.com/information.html">&lt;img src="http://www.mypagehere.com/info.gif" align="left" border="0" />&lt;/a>
    
  • MacGyverMacGyver Canada New
    edited June 2004
    Mr. Kwitko wrote:
    Add a border="0"
    &lt;a href="http://www.mypagehere.com/information.html">&lt;img src="http://www.mypagehere.com/info.gif" align="left" border="0" />&lt;/a>
    

    Perfect!!
    Just what I needed!
    Thanks!
  • primesuspectprimesuspect Beepin n' Boopin Detroit, MI Icrontian
    edited June 2004
    Ever hear of folding?

    :D
Sign In or Register to comment.