Write a HTML program to insert image in web page. Display table which contains 3
rows and 3 columns with any data value.
Answers
Answered by
3
To insert images, use <img> tag.
<html>
<head>
</head>
<body>
Hello, this answer was given by me.
<p>
<img src="iloveyou.jpg" width="100px" height="100px">
<p>
<table border="1px">
<tr><td>I</td><td>Love</td><td>Jahnavi</td></tr>
<tr><td>I</td><td>Love</td><td>Jahnavi</td></tr>
<tr><td>I</td><td>Love</td><td>Jahnavi</td></tr>
</table>
</body>
</html>
Attachments:
Similar questions