|
| ||||||||||
| Tags: html, image file, mail account, signature |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| How do I insert an image in HTML?
I have received a mail in which I saw an Image file, which is of .jpeg extension then I was wondering to have another image file with the same extension in my mail account with my signature. I am little assure that this is possible because when we see the source code of mail account it displays with the HTML language, So if any one come across any kind of such things please let me. Yours Help will be Appreciated. |
|
#2
| |||
| |||
| Re: How do I insert an image in HTML?
Hey what do you really want to do? Can you make it simpler to understand what exactly you are looking for? What do you mean by " How do I insert an image in HTML? " Quote:
|
|
#3
| ||||
| ||||
| Re: How do I insert an image in HTML?
To display an image in your HTML document, use the img element, which has a number of attributes to configure the image display. Code: <img
src="./Example.jpg"
width="200"
height="150"
alt="Example image"> The width and height attributes specify the dimensions of your image in pixels, which helps Web browsers to render the image on screen. Finally, the alt attribute is for a description of the image content to display in case users have switched off image display, so they understand what they are missing. |
|
#4
| ||||
| ||||
| Re: How do I insert an image in HTML?
To insert an image in an HTML file we use the <img> tag. For example, to insert an image called photo.png, located in the same directory as the file that is going to show it, we write: Code: <img src="photo.png" alt="description of the photo"></img> In case your image is included in a different folder, say images/, as is often the case with PHP-Nuke, the code looks like: Code: <img src="http://forums.techarena.in/images/photo.png" alt="description of the photo"></img> Code: <a href="http://www.karakas-online.de/EN-Book/"> <img src=" http://www.karakas-online.de/EN-Book/images/nuke.png" alt="PHP-Nuke HOWTO"></img></a> |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How do I insert an image in HTML?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Insert HTML text box | - Empty Shell - | Software Development | 10 | 23-12-2010 03:22 AM |
| How to insert JavaScript into HTML file? | Shekhar12 | Software Development | 3 | 24-11-2009 04:49 PM |
| How to insert Flash movie in HTML web page | Lishi | Software Development | 3 | 02-10-2009 11:45 PM |
| How to insert an em dash in MS Word and HTML | Vania | Windows Software | 2 | 16-05-2009 11:51 AM |
| insert url of a video in a html code | Richard B Rufus | Software Development | 4 | 10-02-2009 09:59 AM |