Results 1 to 6 of 6

Thread: How to insert image or picture in HTML using notepad?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Oct 2014
    Posts
    17

    How to insert image or picture in HTML using notepad?

    How to insert image or picture in HTML using notepad? or what code can i use?

  2. #2
    Frenzied Member tr333's Avatar
    Join Date
    Nov 2004
    Location
    /dev/st0
    Posts
    1,605

    Re: How to insert image or picture in HTML using notepad?

    Depends if you just want a single static image or responsive images.

    The <img> element will insert a single image, while the picturefill polyfill will handle the <picture> element if you want responsive images.
    CSS layout comes in to the 21st century with flexbox!
    Just another Perl hacker,

  3. #3
    New Member
    Join Date
    May 2015
    Posts
    8

    Re: How to insert image or picture in HTML using notepad?

    Quote Originally Posted by Brooklyn View Post
    How to insert image or picture in HTML using notepad? or what code can i use?
    Hii,
    you can use <img src="loacation/image.extension" width="500" height="400" border="1">

  4. #4
    New Member
    Join Date
    May 2015
    Posts
    6

    Re: How to insert image or picture in HTML using notepad?

    hi,
    in this case you need optimize the image your site by using HTML
    <img src = "folder/imf.jpg" width="" height="what u need" alt="image name">
    by using css property you need to mention following element like
    background-image : url ('../path/image name');

  5. #5
    Banned
    Join Date
    Jul 2015
    Posts
    15

    Re: How to insert image or picture in HTML using notepad?

    to insert an image in html file using notepad is


    The tag to add an image is the IMAGE tag, <img>. We have to tell them where the image is, so we use the src attribute to specify the image. We do that like this:

    <img src="../waterimage.jpg">

  6. #6
    New Member
    Join Date
    Jul 2015
    Location
    India
    Posts
    4

    Re: How to insert image or picture in HTML using notepad?

    To insert images in the html follow the below code..
    <img src="location/image-name" width="" height="">

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width