answersLogoWhite

0

You use an attribute called padding. Here is an example for you to modify as needed for your site: <img src="image.jpg" width="100" border="0" height="100" style="PADDING-LEFT: 5px"; "PADDING-RIGHT: 5px"; "PADDING-TOP: 5px"; "PADDING-BOTTOM: 5px" alt="My Image" />.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

How do you post a picture on a forum with HTML?

Most forums use something that is called BBcode, which is an alias of HTML. On most forums the code would be [img]http://deffe.com/cow.jpg[/img] some forums use HTML link to upload the image , on those forums paste the HTML link generated from a image hosting website. make sure that there are no space's present in between the tags or links


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 do you make backgrounds that were originally from a picture using HTML?

Use the attribute Background=".." inside the start Body tag using the URL of the image as the value. It should look like this: &lt;body background="http//image URL./nameofimage.gif"&gt; this will place the image as the background of your webpage, and at the end of your HTML document you close the Body &lt;/body&gt; If the size of the photo is smaller than the size of the page the image will be repeated to fill in the space.


How do you make glitter graphics in HTML?

You can't reli create them in HTML, javascript would be a push but I think was you are looking for is the img tag of HTML therefore: You can create gilter graphics with a genertor customise you image then save and add an image tag in your HTML page. (added a link under related links)


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 use HTML to make a website?

HTML is the bottom most part of a website, it is the blue prints to the entire website, every little box, letter and image you see on a website is all put there by HTML.


HTML code for adding JPEG?

Simply type .Make sure you replace 'destination path to image' with the path to your image (eg. http://www.yourwebsite.com/image.jpg).


How do you make a skull on HTML?

HTML is a language that the browser understands to display a document (page) You cannot create a skull using HTML. If you want to create a skull you need a program like Paint Shop or any image editor. You can place a picture of a skull on the page using the following HTML. Using HTML to display images you use the &lt;img&gt; tag. To display an image on a page, you need to use the (source attribute) src= The value of the src attribute is the URL of the image (skull) you want to display on your page which means that the image you want to display must be uploaded to a server, and have a web address (URL). The URL for the image points to the location where the image is stored on the server. It should look like this: &lt;img src="http://www.theURLfortheimage.com/Skull.jpg"&gt; Broken down it means &lt; img source = the address (URL) of the image is located / (for the name of the image) skull.jpg&gt;


How do you make a hyperlink that redirects to Answers.com?

Insert the following text into your HTML code:http://wiki.answers.com">IMAGE CODE OR LINK TEXT HERE


How would you make an html form where there some areas for text and one for an image and when the form is submitted the result is a copy of the image with the text responses embedded into the code?

This is not possible using HTML. You will need to use a server-side script, such as PHP, or a client-side script, such as JavaScript. HTML is a markup language, and does not have the capacity to process data or compute logic.


How do you embed a URL in to a picture?

To embed a URL in a picture, you can use an image editing tool or HTML code. In HTML, wrap the image tag with an anchor tag like this: &lt;a href=&quot;URL&quot;&gt;&lt;img src=&quot;image.jpg&quot; alt=&quot;Description&quot;&gt;&lt;/a&gt;. This will make the image clickable, directing users to the specified URL when they click on it. Alternatively, some image editing software allows you to add hyperlinks directly to the image, but this is less common for web use.


How you make a HTML code of your photo?

Using HTML to display images you use the tag. To display an image on a page, you need to use the (source attribute) src= The value of the src attribute is the URL of the image you want to display on your page which means that the image you want to display must be uploaded to a server, and have a web address (URL). The URL for the image points to the location where the image is stored (the server)It should look like this: Broken down it means < img source = the address (URL) of the image location/ (for the name of the image) yourimage.jpg>