How can I add a border to an image using HTML?
|
|
border="1" ON IMAGE TAG or using css border:1px solid #000; |
||
|
|
|
|
Two ways:
or
|
||||||||||||
|
|
|
You can also add padding for a nice effect.
|
||
|
|
|
|
Here is some HTML and CSS code that would solve your issue: CSS
HTML
|
|||
|
|
|
|
The correct way depends on whether you only want a specific image in your content to have a border or there is a pattern in your code where certain images need to have a border. In the first case, go with the style attribute on the img element, otherwise give it a meaningful class name and define that border in your stylesheet. |
||
|
|
|
|
I also prefer CSS over HTML; HTML is about content, CSS about presentation. With CSS you have three options.
Example using internal stylesheet:
If you want an external stylesheet, replace the <style>...</style> block with
|
||
|
|
|
Jack, You can learn a great deal about borders, and how to use them at http://www.w3schools.com/css/css_border.asp. That being said, there are a couple different ways you could accomplish this. Below is how I generally do it, but reading the documentation on w3schools you may come upon your own desired method.
Edit: I noticed the original question was not "How to add a border to an image," but instead it was "how to add in a box around an image using html?" The question was re-written by others, so I'm not 100% sure you wanted a border on your image. If you just wanted a box around your images, you could use a DIV, with it's own styles:
|
||
|
|
