Computer Science, asked by sunilagrawalytl, 7 months ago

Write HTML code to insert an image with the following attributes in a web page.URL of the image - "angel.png" Alternate Text - Angel Width of the image - 25 height of the image - 35 width of the border = 4



I WILL MARK YOU AS BRANLIST​

Answers

Answered by salmanwap
3

Answer:

HTML code to insert an image with attributes.

<html>

<head>

<title>Img Tag</title>

</head>

<body>

<img src="angel.png" alt="Angel" height="25" width="35" border="4" />

</body>

</html>

Similar questions