Help - Search - Members - Calendar
Full Version: Translate Please
Sal's RuneScape Forum > Everything... Not RuneScape > Tech Talk > Programming & Web Development
Kyra10987
http://img256.imageshack.us/img256/6986/pu...underbanner.png
http://img689.imageshack.us/img689/7882/pumpkinpip.png

Make it into an HTML code so that it shows up as an image. No border please!
And......
http://img396.imageshack.us/img396/8849/cactussignature.png
Also
Shpendi
For the first image:

CODE
<img src="http://img256.imageshack.us/img256/6986/pumpkinunderbanner.png" alt="http://img256.imageshack.us/img256/6986/pumpkinunderbanner.png">


Second image:

CODE
<img src="http://img689.imageshack.us/img689/7882/pumpkinpip.png" alt="http://img689.imageshack.us/img689/7882/pumpkinpip.png">


Third image:

CODE
<img src="http://img396.imageshack.us/img396/8849/cactussignature.png" alt="http://img396.imageshack.us/img396/8849/cactussignature.png">

Agent F
Shpendi is on the right track, but not xHTML compliant. You didn't properly close the tag, didn't specify a border, why would you place the location as the alternative text?, and you should specify the dimensions for optimization, although it's not required for web standards compliance.

Image 1:
CODE
<img src="http://img256.imageshack.us/img256/6986/pumpkinunderbanner.png" alt="Pumpkins &amp; Happy Halloween" style="border-style: none" width="350" height="25" />

Image 2:
CODE
<img src="http://img689.imageshack.us/img689/7882/pumpkinpip.png" alt="Happy Halloween" style="border-style: none" width="120" height="50" />

Image 3:
CODE
<img src="http://img396.imageshack.us/img396/8849/cactussignature.png" alt="Cactus signature" style="border-style: none" width="350" height="120" />

Edit: @ OP: For the alternative text (alt=""), you can put anything in there, but it's used to describe what the image is in a few words.
Kyra10987
QUOTE (Agent F @ Nov 1 2009, 02:18 PM) *
Shpendi is on the right track, but not xHTML compliant. You didn't properly close the tag, didn't specify a border, why would you place the location as the alternative text?, and you should specify the dimensions for optimization, although it's not required for web standards compliance.

Image 1:
CODE
<img src="http://img256.imageshack.us/img256/6986/pumpkinunderbanner.png" alt="Pumpkins &amp; Happy Halloween" style="border-style: none" width="350" height="25" />

Image 2:
CODE
<img src="http://img689.imageshack.us/img689/7882/pumpkinpip.png" alt="Happy Halloween" style="border-style: none" width="120" height="50" />

Image 3:
CODE
<img src="http://img396.imageshack.us/img396/8849/cactussignature.png" alt="Cactus signature" style="border-style: none" width="350" height="120" />

Edit: @ OP: For the alternative text (alt=""), you can put anything in there, but it's used to describe what the image is in a few words.

Ooohh okay thanks biggrin.gif

EDIT: Can you make the last one a link to: http://sites.google.com/site/cactusclanfamily/ ? Thanks biggrin.gif
Agent F
Sure thing. The title attribute in an anchor tag (link tag) is the same as the alternative text attribute for the image tag. You can put anything you want but it's used to give the linked page's title or a brief description.

CODE
<a href="http://sites.google.com/site/cactusclanfamily/" title="Cactus Clan Family"><img src="http://img396.imageshack.us/img396/8849/cactussignature.png" alt="Cactus signature" style="border-style: none" width="350" height="120" /></a>
Kyra10987
QUOTE (Agent F @ Nov 1 2009, 09:30 PM) *
Sure thing. The title attribute in an anchor tag (link tag) is the same as the alternative text attribute for the image tag. You can put anything you want but it's used to give the linked page's title or a brief description.

CODE
<a href="http://sites.google.com/site/cactusclanfamily/" title="Cactus Clan Family"><img src="http://img396.imageshack.us/img396/8849/cactussignature.png" alt="Cactus signature" style="border-style: none" width="350" height="120" /></a>

Thanks ice.gif
It seems that you're good at HTML, I'll be sure to ask you if I have any more issues biggrin.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.