How do i add Deluge strings into an html snippet in a page??

How do i add Deluge strings into an html snippet in a page??

Hi! 

I know nothing about html... I'm trying to add the current date to the html code, but i don't know how. If i put it like this it shows the text "zoho.currentdate" instead of the date.

HTML SNippet Code:

<%{
%>
<table border="1" cellpadding="0" cellspacing="0" style="width: 20cm; height: 2cm;">
  <tbody>
    <tr style="height: 1cm;">
      <td align="center" rowspan="2" style="width: 3cm; height: 2cm;" valign="middle">
        <p>
          <img src="https://i.ibb.co/1GbhqLd/Marca-Madre.jpg" style="width: 28mm;" alt="Marca-Madre" border="0">
        </p>
      </td>
      <td style="width: 12cm; height: 1cm;" valign="middle">
        <p align="center"><span style="color: #073a6c; font-family: Calibri; font-size: medium;"><strong>SISTEMA DE GESTIÓN EN SALUD Y SEGURIDAD OCUPACIONAL</strong></span></p>
      </td>
      <td rowspan="2" style="width: 3cm; height: 2cm;" valign="middle">
  zoho.currentdate;
      </td>
    </tr>
    <tr style="height: 1cm;">
      <td style="width: 12cm; height: 1cm;" valign="middle">
        <p align="center"><span style="color: #0d6002; font-family: Calibri; font-size: medium;"><strong>INFORME MENSUAL DE SEGUIMIENTO</strong></span></p>
      </td>
    </tr>
  </tbody>
</table>
<%

}%>