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" />
First add image (.jpg, .png, .gif) into 'images' folder in main root of the site. In HTML code add <img alt="word or phrase describing image" height="162" src="path where image is coming from images/img.gif" width="917" />
The code to insert an image beings with the <img> tag. If you want the user to enter the image, you have to apply image upload.
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:
The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. </BODY> <HTML>
"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."
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.
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- <img src=your images name.jpg> (or .GIF or . PNG whatever type of image you are using)
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
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. <IMG SRC="location of picture">
Any domain
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.
First add image (.jpg, .png, .gif) into 'images' folder in main root of the site. In HTML code add <img alt="word or phrase describing image" height="162" src="path where image is coming from images/img.gif" width="917" />
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!
The code to insert an image beings with the <img> tag. If you want the user to enter the image, you have to apply image upload.
i read ---------- story about one-eyed giants
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
You upload the image in HTML using a form that includes the following field <input type="file" name="fileUpload" /> 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