I am super new to HTML and CSS and while studying faced with the issue: I have located logo on the left side and hyperlink on the right side. But, unfortunately, I cannot locate hyperlink on the center (based on logo's center): Output screenshot
CSS:
<style>
.Logo-Car-With-Text {
width: 48px;
height: 48px;
margin: 0 461px 0 0;
object-fit: contain;
}
.Background {
width: 900px;
height: 72px;
padding: 12px 150px;
box-shadow: inset 0 -1px 0 0 #e7e7e7;
background-color: #ffffff;
}
.Help-Support {
width: 91px;
height: 16px;
margin: 18px 0 16px 461px;
font-family: Arial;
font-size: 12px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1.33;
letter-spacing: 0.2px;
text-align: right;
color: #007f00;
}
</style>
HTML:
<div class="Background">
<img src="images/download.png" class="Logo-Car-With-Text">
<a class="Help-Support" href="https://www.google.com/">Help & Support</a>
</div>