Ted is asked to create a page of family photos for his family reunion Web site. He will have about 20 pictures to post, with a caption that he wants to display before each one. Each picture is a group photo of a particular family. Ted has decided to use a

for his actions. What attribute could he add to make sure they are centered

Respuesta :

Answer:

The answer to the given question "<img src>" attribute.

Explanation:

As we know that ted has asked for create a family photos for his family reunion website. for show image or pictures on a web page we use image tag. image tag is a part of the html. By the use of html&css we provide more attractive web page so ted use the image tag for making group photo of a particular family.

Use of image tag:

<html>

<head>

<title>

USE OF IMAGE TAG

</title>

</head>

<body>

<center>

<img src="image name with Extention" alt="image name or message" height="42" width="42">

</center>

</body>

</html>