I want to use an image in the header of the site, it is small and I would like to repeat it horizontally throughout the header using CSS.
The HTML is as follows:
<body>
<header>
<div id="cabecalho">
<img src="pasta/imagem.jpg">
<h1>Texto</h1>
<h2>Texto</h2>
</div>
</header>
Thanks in advance for the help.