12
Jul
2009

How To Make An Image Link To Your Audio & Video Clips

In Category: audio & video| html
Posted By Codenique @ 12:14:42 AM
 

You can also use an image to link to your audio and video files. You will need to use the <a> tag and its href and title attributes along with the <img> tag and its src, alt and border attributes. Let me first explain about the <img> tag and its attributes first.

Read More ››
11
Jul
2009

How To Hack The Coordinates For Your Image Maps

In Category: html| image maps
Posted By Codenique @ 11:57:28 PM
 

What if you need to get the coordinates for your client-side image map and do not have access to a web page editor like Adobe Dreamweaver and so on, which can draw image maps on to your images as well as provide you with the coordinates. This is cool if you create web pages with Dreamweaver or other web page editors, but if you are coding your image map by hand what can you do, nothing your screwed, I’m just playing. You can use the free programs available on your computer that will tell you your images coordinates or you can use the image map coordinates hack technique, which I will explain.

Read More ››
11
Jul
2009

How To Create Server-Side Image Maps Using The <img> & <a> Tags

In Category: html| image maps
Posted By Codenique @ 11:56:19 PM
 

The other type of an image map is called server-side because of the work that is done by the server when a user clicks on a hotspot also known as a link or clickable region or area.

Read More ››
11
Jul
2009
 

There are two types of image maps that are called client-side and server-side image maps. I will explain about client-side image maps in this tutorial and in a future tutorial, I will explain about server-side image maps.

Read More ››
11
Jul
2009
 

What if you want your images to download faster for your users, in order to do so you will have to include the width and height attributes for the <img> tag. The values for the width and height attributes should always be in pixels, for example width=”400px”.

Read More ››
11
Jul
2009

How To Add Thumbnail Images To Your Web Pages With HTML & XHTML

In Category: html| images
Posted By Codenique @ 10:47:27 PM
 

Now let me show you how to make a thumbnail image, which will be used as a link to the larger external image. In order to make the thumbnail image you will need an image editor to resize the image to a smaller size, I used Photoshop CS to resize my image or you can use the <img> tags width and height attributes, you will have to give the size of both attributes values in pixels, for example, a pixel value of 75px.

Read More ››
11
Jul
2009

How To Add Inline Images In HTML & XHTML Using The <img> Tag

In Category: html| images
Posted By Codenique @ 10:45:21 PM
 

Now let’s talk about how to add inline images to an HTML or XHTML document. You will do this by using the <img> tag, which displays an inline image. An inline image is an image that is inserted into the current text flow of your HTML or XHTML document, which has no implied line or paragraph break before or after the <img> tag, that is why the images are called inline. The <img> tag requires no end tag in HTML but in XHTML, it is required, since the <img> tag is an empty tag, which means it has no end tag you will either have to include an end tag the normal way, for example <img></img> or the shorthand way, for example <img /> both of which are acceptable for XHTML.

Read More ››
19
Jun
2009

How To Nest HTML & XHTML Tags

In Category: getting started| html
Posted By Codenique @ 4:00:13 AM
 

Why nest tags you ask because I ordered you to, just playing, nesting tags can give your web page multiple effects to your text and much more.

Read More ››