This is how to center anything in HTML
This is how to center anything in HTML
1. Create a container
<div>
2. Add the element you want to center inside the container. If you have a group of elements, wrap the contents with div.
3. Set with width and height of the container.
4. Then set the display to flex.
5. Set align-items: center to center with items vertically
6. Lastly, set justify-content: center to center the items horizontally.