answersLogoWhite

0


Best Answer

Yes, you can insert an image anywhere in the code. You just have to insert the img tag before the area you want to insert it.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

You can insert table caption in header in HTML. You just have to insert that caption in <p> element.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

<table background="image name.jpg">

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you insert an image in table header in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can insert image on title of an HTML page?

You call it an HEADER and you put it in the upper most part of the &lt;body&gt; .


What do you mean by HTML header?

HTML header is placed on the top of a HTML page. It is wrapped inside the &lt;head&gt; element.


When you insert an image filename malaysiagif the HTML tag will appear as?

&lt;img src="malaysia.gif" /&gt;


What is HTML code to create a webpageb to insert an images of input devices and output devices?

The code to insert an image beings with the &lt;img&gt; tag. If you want the user to enter the image, you have to apply image upload.


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:


How do you insert image using aspnet?

You can add an image object using the asp:Image tag, or just use the html img tag.


Name three TML tags?

HTML Tags: Body Header Bold Underline Table DIV META SCRIPT


What do you mean by header?

HTML header is placed on the top of a HTML page. It is wrapped inside the &lt;head&gt; element.


How do you insert image from your desktop in a HTML?

In HTML, to include an image, use the IMG tag and specify the location of the image using the SRC parameter. However, because the image is located on your desktop, you will be the only person who will see it. If you want to make it viewable by others, you have to upload the HTML file and the image file to a webserver. &lt;IMG SRC="location of picture"&gt;


How can you put a header footer and content on the middle in HTML?

Header and Footer are not predefined in the HTML. However if you want to use it, then use jQuery for it.


How can i Have php post to self with mysql?

Mysql is an Database where Data from HTML forms will be inserted to it by some scripts like ASP 3 (classic), ASP.NET, PHP, ColdFusion and... What you need is a form (By HTML), an Database and table in Mysql and PHP to insert data from your form to the table. mysql insert command is: INSERT INTO table_name_here (column1, column2, ..) VALUES (value_of_column_1, value_of_column_2, ...)


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: &lt;img src="...\anywhere\image.jpg" width="100" height="100" alt="My Image" /&gt;.