You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
440 B
HTML

<html>
<head>
<title>CSS Image Border</title>
<style type="text/css">
body{
margin-left: .40in;
margin-top: .40in;
color: pink
}
img{
border-color: red;
border-style: inset;
border-width: thick;
}
</style>
</head>
<body>
<img src="http://www.happycodings.com/images/happy.gif" alt="Happy Codings" height="100" width="240" />
</body>
</html>