answersLogoWhite

0


Best Answer

This cannot be accomplished with HTML. You may need to use JavaScript to accomplish this effect.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Whose tag used in HTML for image display one by one after few seconds?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you insert picture from desktop to HTML page?

You don't actually insert an image into an HTML page. An HTML page can display an image from any location where the browser has access to the file. Let us assume that the image you want to display on your HTML page is image.jpg. You use the tag to tell the browser to display your image. The person looking at your HTML page needs to be able to access the file on your desktop. You normally would upload your image to the Web server, so the visiting browser can see your image. If the image is on your desktop and the browser has access to your desktop content, here is the code you would use to display your image on the Web page:


Why the image not come sometime in HTML?

sometimes if the system does not support image formats like GIF,JPEG,PNG... then the HTML will not display the image.and also if the image is developed using flash player then system must support flash player. sometimes if the location of image source is not correct means then image will not display.


How do you make a skull on HTML?

HTML is a language that the browser understands to display a document (page) You cannot create a skull using HTML. If you want to create a skull you need a program like Paint Shop or any image editor. You can place a picture of a skull on the page using the following HTML. Using HTML to display images you use the <img> tag. To display an image on a page, you need to use the (source attribute) src= The value of the src attribute is the URL of the image (skull) you want to display on your page which means that the image you want to display must be uploaded to a server, and have a web address (URL). The URL for the image points to the location where the image is stored on the server. It should look like this: <img src="http://www.theURLfortheimage.com/Skull.jpg"> Broken down it means < img source = the address (URL) of the image is located / (for the name of the image) skull.jpg>


How can you insert an image as a background if it is stored anywhere in the system?

You can display an image with HTML as long as you know the location of the image. You use the image tag like this: <img src="...\anywhere\image.jpg" width="100" height="100" alt="My Image" />.


Which attribute specifies the name of the image to display in HTML?

There is an attribute which defines the name of the image to be displayed. The attribute is called as ALT or alternate.

Related questions

How do you display an image on the homepage only using CSS or HTML?

HTML only can be used to display an image on homepage. Image SRC tag can be used to publish it.


What will be the HTML syntax of the image after copying it to a CD?

An image does not have an HTML syntax. If you copy an image from a Webpage, you save just the image file (e.g. image.jpg). You do not save any of the HTML code used to tell the browser where to locate the image to display on the page.


How do you insert picture from desktop to HTML page?

You don't actually insert an image into an HTML page. An HTML page can display an image from any location where the browser has access to the file. Let us assume that the image you want to display on your HTML page is image.jpg. You use the tag to tell the browser to display your image. The person looking at your HTML page needs to be able to access the file on your desktop. You normally would upload your image to the Web server, so the visiting browser can see your image. If the image is on your desktop and the browser has access to your desktop content, here is the code you would use to display your image on the Web page:


Why the image not come sometime in HTML?

sometimes if the system does not support image formats like GIF,JPEG,PNG... then the HTML will not display the image.and also if the image is developed using flash player then system must support flash player. sometimes if the location of image source is not correct means then image will not display.


How do you make a skull on HTML?

HTML is a language that the browser understands to display a document (page) You cannot create a skull using HTML. If you want to create a skull you need a program like Paint Shop or any image editor. You can place a picture of a skull on the page using the following HTML. Using HTML to display images you use the <img> tag. To display an image on a page, you need to use the (source attribute) src= The value of the src attribute is the URL of the image (skull) you want to display on your page which means that the image you want to display must be uploaded to a server, and have a web address (URL). The URL for the image points to the location where the image is stored on the server. It should look like this: <img src="http://www.theURLfortheimage.com/Skull.jpg"> Broken down it means < img source = the address (URL) of the image is located / (for the name of the image) skull.jpg>


How do you use images in HTML?

HTML has a markup tag to tell the browser where to find an image for viewing. If the image is not in the same directory as your HTML file, you need to give the browser enough information to locate the image. Here is an example of HTML code to display an image: <img src="image.jpg" width="100" height="100" alt="My Image" />.


How can you insert an image as a background if it is stored anywhere in the system?

You can display an image with HTML as long as you know the location of the image. You use the image tag like this: <img src="...\anywhere\image.jpg" width="100" height="100" alt="My Image" />.


How do you find a pictures HTML?

Using HTML to display images you use the tag. To display an image on a page, you need to use the (source attribute) src= The value of the src attribute is the URL of the image (skull) you want to display on your page which means that the image you want to display must be uploaded to a server, and have a web address (URL). The URL for the image points to the location where the image is stored on the server. It should look like this: Broken down it means < img source = "the address (URL) of the image is located / (for the name of the image) Youri_picture.jpg">


How you make a HTML code of your photo?

Using HTML to display images you use the tag. To display an image on a page, you need to use the (source attribute) src= The value of the src attribute is the URL of the image you want to display on your page which means that the image you want to display must be uploaded to a server, and have a web address (URL). The URL for the image points to the location where the image is stored (the server)It should look like this: Broken down it means < img source = the address (URL) of the image location/ (for the name of the image) yourimage.jpg>


How do you link an images in HTML?

To display an image use: To display an image that goes to a site when clicked, use: Replace what is in bold.


What is the HTML command used to display an image in background?

style="background-image: url('image.jpg')" Example: &lt;body style="background-image: url('background.jpg')"&gt;


Which attribute specifies the name of the image to display in HTML?

There is an attribute which defines the name of the image to be displayed. The attribute is called as ALT or alternate.