Yu Kang Choi
30
Q:

img html

<img src="smiley.gif" alt="Smiley face" height="42" width="42">
34
<p><img src="image/example.jpg" alt="Example1" width="193" height="130"> (width:193px, height:130px)</p>

<p><img src="image/example.jpg" alt="Example2" width="96" height="65"> (width:96px, height:65px)</p>

<p><img src="image/example.jpg" alt="Example3" width="100%" height="130"> (width:100%, height:130px)</p>
6
<img src="img_girl.jpg" alt="Girl in a jacket" style="width:500px;height:600px;">
17
<img src="file.jpeg" width="200px" height="200px"> <!-- for images that are saved in the same folder as the HTML document -->
<img src="/media/USB/image.jpeg" width="200px" height = "200px" > <!-- the image source will vary by folder, which you can find the locations on the folder NAV on the top of your screen -->
4
<img src="image.jps">
//image.jpg is where you would put the inage source.
14
<html>
  <head>
  </head>
	<body>
  <img src="exampel.end">
    </img>
  </body>
  
  
  </html>
19
<img href="https://website.com/image.jpg"> 
<!-- for an image online -->

<img src=C:\your_files>
<!-- for a local file -->
2
<!DOCTYPE html>
<html>
   <head>
      <title>HTML img Tag</title>
   </head>

   <body>
      <img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
         height="80">
   </body>
</html>
6

<img src="img_girl.jpg" alt="Girl in a jacket" style="width:500px;height:600px;">
 
3

<img src="url" alt="alternatetext">
 
3

New to Communities?

Join the community