Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
img.normal {
  width: auto;
}
img.big {
  width: 50%;
}
img.small {
  width: 10%;
}
</style>
</head>
<body>
<h1>The width Property</h1>
<img class="normal" src="logocss.gif" width="95" height="84"><br>
<img class="big" src="logocss.gif" width="95" height="84"><br>
<img class="small" src="logocss.gif" width="95" height="84">
</body>
</html>