Need some help with HTML

I am trying to get a hyperlink working with my twitch and the code will not work for what ever reason I am not sure why.

 

The code looks like 


<a href="http://www.youtube.com/">My youtube</a>

 

"I put just youtube for right now as a test one"

Would any of you have any idea as to why it isn't working?

Can you post the code of the entire page? Because this code should actually work. Therefore I think the problem is part of the rest of the page's code. And what exactly is the problem? Does it even show up?

If you mean you're trying to get a hyperlink within you Bio on Twitch. You can't, hyperlinking/custom HTML code does not work.

- zanginator

I am trying to input my youtube acount into twitch via Long bio with a picture, but even with no picture just a tect saying "Youtube" it is not a link it will just remin as text. If needed I can post a picture of my notepad++ page showing all of it.

http://imgur.com/ponZDWu

 

I think the problem I was having is that I had the link within a "div" But I would like it to be there so it looks a lot cleaner, so there isn't this random youtube picture just at the bottom, so i can have it in a link div.

<a href="http://www.youtube.com/user/91wow"> <img src="http://i.imgur.com/mFggDtK.png" /> </a>

 ' />' at end of <img> tag.

Also <img> tag should have alt, height & width attributes.

  • Height & Width in pixels; when loading the browser will allocate space on the page for the image before the image loads.  Makes the page load a lot cleaner with less jumping.
  • Alt is just alternate text, should imgur dump your pic rather than having nothing it could say something like, "My YouTube Acccount".

<a href="http://www.youtube.com/user/91wow"> <img src="http://i.imgur.com/mFggDtK.png" height="124" width="124" alt="My YouTube Account"  /> </a>