Generating static HTML code with csv as source
Hello, I regularly receive information via Excel, which I then copy into a static html page. Table cell by table cell. I wonder if this can be automated. Unfortunately, the standard csv import does not help me because the information is not displayed as a table in the HTML. The csv contains information for image names (i.e. embedding an img in the scr), a link and a line of text.
I would therefore have to generate the following code for each line. Do any of you have an idea how I can do this?
The CSV:
TXT;IMG;URL
The HTML:
<a href="URL">
<div>
<img src="IMG">
<p>TXT</p>
</div>
</a>
