answersLogoWhite

0

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:

<image src="PASTE URL HERE" />

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

How do you upload an image in HTML code?

First add image (.jpg, .png, .gif) into 'images' folder in main root of the site. In HTML code add &lt;img alt="word or phrase describing image" height="162" src="path where image is coming from images/img.gif" width="917" /&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:


What should be the last command in any HTML document?

The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. &lt;/BODY&gt; &lt;HTML&gt;


How do I turn HTML to COM?

"Here your question is not clear. But if you are talking about converting the HTML document's extension name from .HTML to .com, then it is not possible. '.HTML' is an extension name that gives an identity to the document that this an HTML document, and only then it will be recognized by the browsers and the parsers. '.com' is the extension for a domain (used for commercial purposes), Similarly there can be many different domain name extensions like dot gov stands for government, dot edu is for education etc. If you have developed a website, then you have to buy a server space where you can upload all you files. Also if you want your website to be recognized by the visitors by a special '.com' name, then you have to by a domain name for your website."

Related Questions

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 a picture in a website using HTML codes?

Open notepad or whatever you write HTML with. Place the image you want in the same folder your HTML document is in. In your HTML document editor (Notepad) write the following- &lt;img src=your images name.jpg&gt; (or .GIF or . PNG whatever type of image you are using)


How do you convert an image into an HTML page?

you don't actually make an image into a page you need to save it as a .jpeg or .gif image and then use it in an HTML document such as a Word document saved as an HTML page, or using a web design program like Dreamweaver for instance using the jpeg as a background or a gif as a web site button


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;


What information does a Field Operator enter after they scan a document or upload image files?

Any domain


How do you upload photos into blog?

If you're using blogger.com, there's a function for you to upload your photos directly into blogger. If not, you can also choose to upload your pictures onto an image hosting site and after that you'll just have to paste the HTML code into your blog. Some image hosting sites includes image shack, photo bucket etc. You can just create an account and upload your image onto the site and after that, you can share them online.


How do you upload an image in HTML code?

First add image (.jpg, .png, .gif) into 'images' folder in main root of the site. In HTML code add &lt;img alt="word or phrase describing image" height="162" src="path where image is coming from images/img.gif" width="917" /&gt;


How do you upload image not using HTML?

If you are talking about a form which lets users upload an image then you can check out JotForm (See Related Links). If you are talking about putting an image on a webpage WITHOUT HTML, it is pretty much impossible unless you use a Web Design Software (Try BlinkWeb (See Related Links)). You may be able to do with FTP, but I am not familiar with FTP and therefore cannot help, sorry!


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 can you sava image file when you want to add it with HTML document?

i read ---------- story about one-eyed giants


Does Craigslist allow more than 4 images?

To get more images in your craigslist post, you must upload them to Craig Upload and then copy and paste the HTML image codes directly into your craigslist post


How do you upload an image using PHP?

You upload the image in HTML using a form that includes the following field &lt;input type="file" name="fileUpload" /&gt; After the form is submitted, you can access it with the $_POST variable as $_POST['fileUpload'] http://www.tutorialsscripts.com/free-php-scripts/file-and-directory-script/image-upload.php