I want to position the img element in the middle of the site. I already tried to postion it in css with the bottom tag to no avail
CSS:
img {
border-radius: 50%;
display: block;
width: 128px;
margin-left: auto;
margin-right: auto;
}
HTML:
<html>
<div class="logo">
<img src="assets/img/logo-icon.png" alt="Avatar"></div>