How to put image in a thead list

0

I'm a beginner in programming and I'm building a list using thead and wanted to know how I can put an image inside <th> .

My code below:

<thead>
     <tr>
         <th>#</th>
         <th>Rádio Vale FM</th>
         <th>04.362.624/0001-00</th>
     </tr>
</thead>

And how it is appearing on the site:

I want to put an image there where # is. How can I do this?

    
asked by anonymous 11.06.2018 / 14:47

1 answer

1

Add the <img src="minha-imagem.jpg" alt="texto-alternativo"> tag inside your <th> tag

Remember to add the full path to the folder of your image in the src

    
11.06.2018 / 15:06