HTML (15)
Browsers can display image files in your document.
Image tag = <img src ="File">
Example ↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</body>
These is the example of the image tag
<p>
<img src ="C:\Users\Public\Pictures\Sample Pictures\Koala.jpg">
</p>
</body>
</html>
0 Comments