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: Attribute, Coords, Element Tag, Free Image, html code, Html Links, Html Tag, Html Tags, Image Map, Image Mapping, Image Maps, Img Src, Leaves, Lt, Quot, Tag Html, Usemap, Www Image, Www Maps
Posted in html | 6 Comments »
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: build your own website, Creating A Website, How to make a website for free, Html Basics, Html Classes, html code, Html Codes, Html Coding, HTML commands, HTML help, Html Tags, Html Training, Html Tutorial, Learn Html, Learning Html
Posted in html code | 5 Comments »
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: Autostart, Avail, Correct Address, html code
Posted in html code | 2 Comments »
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: Default Asp, html code, Html List, W3schools
Posted in html code | 4 Comments »
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: Alt, Blog, Context Menu, Div Tags, html code, Img, Logo, Lt, Path, Text Description, Url, View Image
Posted in html | 5 Comments »
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: Database Html, Free Host, Good Luck, html code, Iframe, Inquiries, Job, Mysql Support, Newbee, Profiles, Server Side Scripting, Server Side Scripting Language, SSI, Stuff, web design, Yahoo, Yahoo Site Builder
Posted in html code | 2 Comments »
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: Code Html, Convert Html, Document Server, html code, Html Document, Html Source Code, Web Based, Web Page, Web Server, Word Document, Word Web
Posted in html code | 1 Comment »
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: Custom Css, Filetype, Flickr, html code, Img Src, Lt
Posted in html code | 1 Comment »