I need to create a footer, but I'm struggling with placing a circle at the top half of the footer like this.
Even though I can create a footer, I still encounter some issues.
This is the code I have right now:
.Footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 72px;
background-color: #ffde6a;
color: #262626;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.Circle {
height: 66px;
width: 66px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
}
.input-icon {
display: flex;
align-items: center;
}
<div class="Footer">
<div class="Circle">
<div class="input-icon">
<svg width="36" height="36" viewBox="0 0 24 24" fill="#262626" xmlns="http://www.w3.org/2000/svg">
<path d="M3 22H21C21 17.5817 16.9706 14 12 14C7.02944 14 3 17.5817 3 22Z" stroke="none" stroke-width="1.5"stroke-linejoin="round"/>
<path d="M16.5 6.5C16.5 8.98528 14.4853 11 12 11C9.51472 11 7.5 8.98528 7.5 6.5C7.5 4.01472 9.51472 2 12 2C14.4853 2 16.5 4.01472 16.5 6.5Z" stroke="none" stroke-width="1.5"/>
</svg>
</div>
Profile
</div>
If you have any suggestions on how to create a footer similar to the image, please help me out! I would greatly appreciate it. Have a nice day!