answersLogoWhite

0

You use the img tag and specify a location with the src attribute:

<img src ="(location of your picture)"/>

So if you have a file called MyPicture.jpg in a local folder called Pictures, your code could be like this:

<img src="Pictures/MyPicture.jpg">

User Avatar

Wiki User

11y ago

What else can I help you with?

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 for inserting a background image?

< body background = " background.gif">


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 correct HTML tag for inserting a line brake?

&lt;BR&gt;


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.


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

&lt;br&gt;


What is inserting a line break for HTML?

Inserting a line break would be just adding the following to the part where you want to break your line:


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


How To Embed Images In Text?

You can embed an image in HTML via IMAGE tag. It can be written as &lt;img src="image-source"/&gt;


How do you upload an image to a HTML document?

To put an image in an HTML document, first upload the image to a web server somewhere. Then, copy the URL of the document. Finally, place the following code into the HTML document: &lt;image src="PASTE URL HERE" /&gt;


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.


Is a embedded image a part of the HTML file?

Images cannot be stored in the actual HTML file itself. HTML is always stored in a text file. Text files cannot store images. What will be in it is a reference to the image which enables the page to show the image, by looking to its location. When you open the HTML file in a browser, it will show the image.