BuyCRAFT html

Discussion in 'Archived: Plugin Requests' started by Dark_Riddles, Dec 5, 2012.

  1. Offline

    Dark_Riddles

  2. Offline

    Nikve

    Add your own link after <img src="
     
  3. Offline

    Dark_Riddles

    Ok thanks but how do make my picture into a link
     
  4. Offline

    joshwenke

    <img> is the tag for an image. Adding the src="LINK" attribute to it makes it show an image from LINK. So, <img src="blah" /> would show that image from that URL.

    Same for the link tag, <a>, add href="LINK" to make whatever's inside the <a> tag be linked.

    For example, to link an image, first put the image tag and its source:
    <img src="myPic" />

    Now, enclose it with <a> tags. so...

    <a href="LinkTo"><img src="myPic" /></a>

    To upload your own image and get a link to it, use a site like imgur.com or something similar.
     
  5. Offline

    Dark_Riddles

    Oh wow thanks that help so much
     

Share This Page