Ajout d'image dans HTML
<img src="image.png" alt="Description for image" width="250" height="250">
Tejas Naik
<img src="image.png" alt="Description for image" width="250" height="250">
<!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>
<img src="flowers.jpg" alt="flowers">
//Always add the image type (jpg,png, etc) Adding alt text
is also good coding practice :)
<html>
<head>
</head>
<body>
<img src="exampel.end">
</img>
</body>
</html>
<img src="image.jps">
//image.jpg is where you would put the inage source.
<img src="example.png" alt="Text will replace the image if it fails to load.">