CSS Image Border
<html> <head> <title>CSS Image Border</title> <style type="text/css"> body{ margin-left: .50in; margin-top: .50in; color: white } img{ border-color: white; border-style: inset; border-width: thick; } </style> </head> <body> <img src="http://www.java2s.com/style/logo.png" alt="Java" height="300" width="240" /> </body> </html>