Image Borders by HTML

To create a web site and to build up of its beauty Image Inserting is a wonderful contain. Image Inserting, its size modification, its border, border color and its link is very important element to add a picture on a site. Image border create a highlight image on its shown. So a site builder use various design of image border like solid, dotted, dashed, double, groove, ridge, inset, outset etc. All of them you can create it easily to follow this tutorial post. Now we describe that, how may create it by using HTML coding. Let’s learn about it…………

1. HTML Image Border on Solid with 10px Red color

HTML Coding

[code language=”css”]
<img style="border:10px solid red;" src="http://noyon.me/wp-content/uploads
/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser


2. HTML Image Border on dotted with 20px Green color

HTML Coding

[code language=”css”]
<img style="border:20px dotted Green;" src="http://noyon.me/wp-content
/uploads/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser


3. HTML Image Border on dashed with 10px Blue color

HTML Coding

[code language=”css”]
<img style="border:10px dashed blue;" src="http://noyon.me/wp-content
/uploads/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser



4. HTML Image Border on Double with 20px Cyan color

HTML Coding

[code language=”css”]
<img style="border:20px double cyan;" src="http://noyon.me/wp-content
/uploads/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser



5. HTML Image Border on Groove with 10px Magenta color

HTML Coding

[code language=”css”]
<img style="border:10px groove magenta;" src="http://noyon.me/wp-content
/uploads/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser



6. HTML Image Border on Ridge with 20px yellow color

HTML Coding

[code language=”css”]
<img style="border:20px ridge yellow;" src="http://noyon.me/wp-content
/uploads/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser



7. HTML Image Border on Inset with 10px Black color

HTML Coding

[code language=”css”]
<img style="border:10px inset black;" src="http://noyon.me/wp-content
/uploads/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser



8. HTML Image Border on Outset with 20px Red color

HTML Coding

[code language=”css”]
<img style="border:20px outset red;" src="http://noyon.me/wp-content
/uploads/2013/02/Logo-6.gif" width="320" height="264"/></a>
[/code]

Show in Browser