Results 1 to 6 of 6

Thread: How to Embed Image in HTML

  1. #1
    Join Date
    Oct 2005
    Posts
    82

    How to Embed Image in HTML

    Hello,
    I want to embed an image data of jpeg in my html code for server side purposes. I have seen many examples of embedding image in html but none of the examples work in Internet Explorer browser. So if anyone can show me how to embed and image / photo in HTML, it would be great. Thank you
    "Freely you have received, freely give." -- Jesus Christ

  2. #2
    Join Date
    Dec 2007
    Posts
    1,599

    Re: How to Embed Image in HTML

    You just have to use the img element into you code. You can also see some examples already made in topics here called insert an image in HTML.

    You can also embed list-style-image in document by following the tips given in the sites below. http://rifers.org/blogs/gbevin/2005/...es_inside_html
    http://www.kryogenix.org/days/2003/10/18/embedding

  3. #3
    Join Date
    Jun 2006
    Posts
    623

    Re: How to Embed Image in HTML

    I wondered if there was a solution to embed picture and table into HTML email but there isnt cause HTML is only a markup language, but you can put the complete image data into the cell. Most of the people have their email settings set and therefore that images does not automatically loads. It would simple display a red x. They do this because there are some security concerns with jpeg images carrying viruses. To avoid spam in the database the images shown in the email clients is not being displayed

  4. #4
    Join Date
    Dec 2007
    Posts
    1,547

    Re: How to Embed Image in HTML

    You can also embed Images in RTF when converting from HTML but incase if you get any errors then follow the procedure given below:

    1. Open the damaged document in word.

    2. Go to Tools -> Macro -> Record New Macro

    3. Call it what you want

    4. Make the necessary changes

    5. Go to Tools -> Macro -> Visual Basic Editor (If you have Visual Studio Installed)

    This will give you the exact macro code you can directly integrate into your application.

  5. #5
    sayed Guest

    Re: How to Embed Image in HTML

    You can embed it using CSS.

    Add this between the head tags of the page you will be making:

    Code:

    <style type="text/css">
    body{
    background-image: url(yrimage.gif);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #0000ff;
    }

  6. #6
    swapantech1 Guest

    Re: How to Embed Image in HTML

    Dear Sir,
    With due respect, it is fine and interesting for me.

    thanks & regards,
    swapan.

Similar Threads

  1. Embed mp4 in html
    By super soaker in forum Software Development
    Replies: 5
    Last Post: 21-12-2009, 01:00 PM
  2. How to embed mpeg file in html
    By ADJATAY in forum Software Development
    Replies: 5
    Last Post: 29-11-2009, 01:40 AM
  3. How to embed xml in html
    By VinFanatic in forum Software Development
    Replies: 3
    Last Post: 03-08-2009, 01:14 PM
  4. How to Embed FLV/SWF Videos In HTML
    By CACTUS101 in forum Technology & Internet
    Replies: 3
    Last Post: 29-06-2009, 10:00 AM
  5. How to embed a WMV into an html page
    By Ameyaa in forum Software Development
    Replies: 2
    Last Post: 19-05-2009, 10:37 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,297,429.21867 seconds with 17 queries