answersLogoWhite

0


Best Answer

< body background = " background.gif">

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
User Avatar

zoha shahzadi

Lvl 1
2y ago
thnx

Add your answer:

Earn +20 pts
Q: What is the correct HTML for inserting a background image?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

What is the term for a picture or graphic that contains a link?

In HTML speaking it is called mapped image, you have image mapped that have link. The HTML tag for this is : &lt;map name="..."&gt;&lt;/map&gt; and to apply it on a image you add the attribute usemap="#mapName"


How do you put an image on a website what is the code?

The image must be uploaded beforehand. A free host such as imageshack.org or photobucket.com will usually do.


Is it possible to convert a URL link into an icon?

Yes, although the method varies depending upon the software you're using. For straight HTML, the syntax is similar to this (someone correct me - it's been ages since I've done HTML coding): &lt;a href="link"&gt;&lt;img src="image source URL"&gt;&lt;/a&gt; MS Word and other word processors allow for WYSWIG (what you see is what you get) operation, in that you can simply drag and drop images into the document and save as HTML for uploading to a server. Forum software is as simple as clicking the picture icon when replying to a post, then supplying the link to the image.


How can you write text over image using HTML 5?

It would depend on the program you are using and weather or not it is allowable.


Is xHTML is the successor to HTML?

No, XHTML is a parallel language to HTML. XHTML is a XML language definition where tags have similar meanings to corresponding HTML tags. A crude analogy would be that XHTML and HTML are half-brothers; Lot's of similarities but also distinct differences. The successor of HTML is HTML5, the successor of XHMTL is XHTML5.

Related questions

Where could one find a tutorial for inserting an image using HTML?

One can find a tutorial for inserting an image using HTML on a variety of online sources. Such sources include PageTutor, HTML, MyHTMLTutorials, and TheSiteWizard.


What is the correct HTML tag for inserting a line brake?

&lt;BR&gt;


What is the correct HTML for inserting a background color?

It is done with the bgcolor attribute. For example, to set a blue background for the whole web page, you would use it in the BODY tag, like this: &lt;body bgcolor="blue"&gt;


What is coding for inserting Image in HTMl language?

In HTML: &lt;img src="path/to/image.jpg" alt="Desc. of the Image"&gt; In XHTML: &lt;img src="path/to/image.jpg" alt="Desc. of the Image" /&gt;


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;


What is the correct HTML tag for a inserting a line break?

&lt;br&gt;


How do I upload an image I have and use the HTML code but the image doesn't show What did I do wrong?

You should check your folder hierarchy and verify that all the HTML/xHTML code is correct. You can use an image editor to ensure the HTML code is correct.


How do you put an image background on websites?

Here's the HTML tag: &lt;body background="yourimage.gif"&gt; or &lt;body background="yourimage.jpg"&gt;


What is the correct HTML element for inserting a line break?

Correct HTML tag for inserting a line break? you can use &lt;br/&gt;


What is the correct CSS for adding a background image to a page?

Use the attribute BGCOLOR=".." inside the start Body tag using the color you want as the value. It should look like this: this will give you a black background, and at the end of your HTML document you close the Body Of cause if you use a black background you cannot use black font. You won't be able to see it. You can set the value=".." of the background to what ever you like.


Put a picture in the background of a webpage using HTML?

Change the &lt;body&gt; tag to &lt;body style="background-image: image.jpg"&gt;. Replace image.jpg with your image.


What is a HTML code for a background on tinierme?

If for an image: &lt;body background="images/background.jpg"&gt; or if for a color: &lt;body bgcolor="#000000"&gt;