Why won't the image adjust to the CSS? I'm trying to move the picture to the side a bit by adding margin, but it's not working out. Any ideas?
HTML
<div class="la">
<center>
<h1> GREET THE TEAM </h1>
</center>
</div>
<img class="pic" src="duve.png">
</body>
</html>
CSS
.pic {
height: 500px;
width: 250px;
margin: 50px;
border: 5px solid black;
}
Any suggestions on how to position the picture slightly to the left side? I've tried various options without success.