0
You can use for example display:flex
for that reason.
See how it looks in the example, I left the comments in the code.
#ladoalado{
display: flex; /* coloca as imagens uma ao lado da outra */
justify-content: center; /* alinha as imagens no centro da tela */
}
<div id="ladoalado"><img src="https://unsplash.it/100/100"><img src="https://unsplash.it/101/100"></div>