how to style a image in html and css easily

HTML CODE

<html>
<head>
<title>Untitled Document</title>
<link href="stylesheet2.css" rel="stylesheet" />
</head>

<body>
<div class="image"><img src="file:///D|/mou di/my/IMG_20161211_084446.jpg" /></div>
</body>
</html>


CSS CODE(stylesheet2.css)


@charset "utf-8";
/* CSS Document */


.image img
{
border:2px solid #F33;
height:450px;
width:600px;
padding:10px;
border-radius:5px;
margin:10px;
}

Post a Comment

0 Comments