Computer Science, asked by plasticstone100, 7 months ago

Write down the syntax of inserting an image with any two attributes. *

Answers

Answered by Anonymous
8

Answer:

Images can be easily inserted at any section in an HTML page. To insert image in an HTML page, use the <img> tags. It is an empty tag, containing only attributes since the closing tag is not required. Just keep in mind that you should use the <img> tag inside <body>…

Explanation:

If you follow and mark brillant I will give full answer.. Really

Answered by tiwarinikita0705
7

Answer:

Explanation:

Example

<!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>

Attachments:
Similar questions