Computer Science, asked by 151436, 9 months ago

3. To insert an image 'picture.gif' on a webpage and center align it in the browser's window. write codes

Answers

Answered by Armyyy
18

Answer:

<html>

<body>

<img src=picture.gif align=center alt=(name of picture)>

</body>

</html>

Explanation:

I used html tag to insert image... if the image is not provided alt tag provide the text alternative to image. And for displaying image in center use align tag.

Similar questions