KYHSGeekCode
0
Q:

image html code

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

//Always add the image type (jpg,png, etc) Adding alt text
is also good coding practice :)
14
<img src="img_girl.jpg" alt="Image Load Error" width="500" height="600">
6
<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
<!DOCTYPE html>
<html>
   <body>
     
     <!-- Pour utiliser une image à partir d'un lien, cous pouvez utiliser
 	      Cette commande : <img src="votre lien"> voici un exemple -->
     
      <img src="https://www.qries.com/images/banner_logo.png"
       width="150" height="70">
     
   </body>
</html>
1
<!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="logo.png" />
5

    <img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:bottom">

    <img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:middle">

    <img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:top">

    <img src="smiley.gif" alt="Smiley face" width="42" height="42" style="float:right">

    <img src="smiley.gif" alt="Smiley face" width="42" height="42" style="float:left"> 
0

New to Communities?

Join the community