What is the html code when placing multiple links on a single image?

Sunday, February 14th, 2010

What is the html code when placing multiple links on a single image? For example… the image is a tree with three leaves. Rather than having the entire image being a link, how would I set up an html code that makes each individual leave a link?

To place multiple links on a single image you need an image map. You associate the image map with the image by giving the image map a name and referring to this name with you IMG tag’s USEMAP attribute. Within your map you will need one area element (tag) for each link.

Here is a simple example:

<img src="tree.jpg" alt="tree" usemap="leaves" width="100" height="150">
<map name="leaves">
<area coords="25,0,74,49" alt="Leaf 1" href="leaf-1.html" title="Leaf 1">
<area coords="0,50,49,99" alt="Leaf 2" href="leaf-2.html" title="Leaf 2">
<area coords="50,50,99,99" alt="Leaf 3" href="leaf-3.html" title="Leaf 3">
</map>

To aid the process of creating your map, there are lots of free image mapping sites. The one that I use is http://www.image-maps.com/

For more information, and an example, see http://www.html-tags-guide.com/html-map-tag.html

Technorati Tags: , , , , , , , , , , , , , , , , , ,

How to make a website for free: Build your own website with free HTML tutorials.

Saturday, February 13th, 2010

At http://www.how-to-html.com we will teach you how to make your own website for free. Over forty free video html tutorial that will teach you every thing you need to know to create a website. Learn the HTML basics with our video tutorials that will teach you how to make a website and how to design your website. These HTML classes are 100% free. So take your time to learn HTML. We will also provide you with all the HTML help that you will need.

Duration : 0:3:56

(more…)

Technorati Tags: , , , , , , , , , , , , , ,

Html code.?

Wednesday, February 10th, 2010

Can any one tell me the code I need to put in this webpage, to stop the video playing automatically, rather than waiting for the button to be pressed.

I have tried autorun=false autostart=false to no avail

IE/FF friendly of course.

http://filehouse.fileave.com/practice2.html
http://filehouse.fileave.com/practice2.html
Correct address
filehouse.fileave.com/practice2.html

It’s not playing automatically.. what’s the problem?

Technorati Tags: , , ,

html code?

Wednesday, February 10th, 2010

can you list all the html code you know and what it does?
not ALL of it.
a reasonable amount

hey, have a look on this http://www.w3schools.com/html/default.asp
this is the school of HTML.

Technorati Tags: , , ,

How do I get the HTML code from a logo to place on my blog?

Wednesday, February 10th, 2010

There is a site that would like me to put their logo on to my blog. How do I get the html code for the logo so it links to their page?

Making an image a link:

<p><a href="URL path to external link" title="Mouseover Description"><img style="width: XXpx; height: YYpx; border: 0;" src="Path to image" alt="Text Description"></a></p>

You can change the "p" tags to div tags and style as needed.

Right-click the logo and select View Image from Context Menu to get the URL of the image.

Ron

Technorati Tags: , , , , , , , , , , ,

Paperback, Head First HTML Code Magnets: Brain Friendly Learning

Tuesday, February 9th, 2010

Paperback, Head First HTML Code Magnets: Brain Friendly Learning

(more…)

Technorati Tags: , , , , ,

Head First HTML Code Magnets [With Magnets]

Sunday, February 7th, 2010

Head First HTML Code Magnets [With Magnets]

(more…)

Technorati Tags: , , , , , , ,

How do i make a action page in my database so i can make my html code do its job?

Thursday, January 28th, 2010

expalin in detail if possible..im using the yahoo site builder and i want to make a log in page. I have the html code and i copied and paested it to my site. I just need to make a action page in my database for that code so i can watch the profiles and stuff..

i no ima newbee at this but im tryna learn can anyone help me out?

Yahoo Site Builder does not allow SSI, or any server-side scripting language. A good idea would be, however, if Y! Site Builder allows iFrames, to build your login page on a free host, and provide that page into the iFrame.
http://www.000webhost.com/ is a good site for free hosting. It allows PHP and MySQL support.
To learn web design down to the coding, visit http://www.w3schools.com
Good Luck!
If you have more inquiries, feel free to Email me!

Technorati Tags: , , , , , , , , , , , , , , , ,

How can I get the HTML code for a Word Document?

Thursday, January 28th, 2010

I have a word document that I want to implement into a web-based document server but I need the HTML source code to copy from the word document to the server. How can I get the source code (HTML) for a word document so I can do this?

A Word document does not have HTML source code. It is a Word document, not a Web page.

You can convert and export Word as html using a Save As function from Word, but the html code it creates is terrible.

Technorati Tags: , , , , , , , , , ,

How do I get an HTML code for a pic on Flickr to use as a layout on Multiply?

Thursday, January 28th, 2010

I’m pretty sure the html needs to go in "Custom CSS" but I cannot remember at all how to generate a code for one of my own pictures. I want to use one as a layout on Multiply or ask someone else if I can use theirs.

Thanks for the help in advance!

<img src="picturename.filetype">

Technorati Tags: , , , , ,