Hi,
I have a gallery which imports images from a SharePoint list.

I have created a HTML table in HTML text input control.
"<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
text-align: left;
}
</style>
</head>
<body>
<h2>CÓDIGO CHECKLSIT</h2>
<p>SHOP FLOOR (fecha firma)</p>
<p>ÁREA: "& lblArea_3.Text &"</p>
<p>SALA/LÍNEA/ ZONA: "& lblSala_3.Text &"</p>
<table style='width:100%'>
<tr>
<th>Tipo de Observación</th>
<th>Descripción</th>
<th>Foto</th>
<th>Departamento</th>
<th>Comentarios Acción</th
</tr>"
&
Concat(Gallery3_4.AllItems, "<tr><td>" & Tipodeobservación & "</td><td>" & Descripcion & "</td><td><img src=" & Label6.Text & "></td><td>" & AccionTemp.Nombre & "</td><td>" & AccionTemp.Accion & "</td></tr>")
&
"</table>
</body>
</html>
"
For the image I am using "Label6.Text" to get the image, but the image is not showing.
This is the table that I am getting.

Please help.