Gmail signature

For a while I had no signature on my email then I started to add a simple “Luca Lanziani” and now I have the following format:

It is a simple html table with some inline css

Code

<table style="color: rgb(80, 0, 80);">
  <tbody>
    <tr>
      <td colspan="3">
        <strong style="color: rgb(88, 88, 88);">Luca Lanziani</strong
        >&nbsp;-&nbsp;Software Engineer
      </td>
    </tr>
    <tr>
      <td><strong style="color: rgb(88, 88, 88);">e-mail</strong></td>
      <td>:</td>
      <td>
        <a
          href="mailto:luca.lanziani@gmail.com"
          target="_blank"
          style="color: blue;"
          >luca.lanziani@gmail.com</a
        >
      </td>
    </tr>
    <tr>
      <td>
        <font color="#585858"><b>site</b></font>
      </td>
      <td>:</td>
      <td>
        <a
          href="http://lanziani.com/"
          target="_blank"
          style="color: rgb(17, 85, 204);"
          >lanziani.com</a
        >
      </td>
    </tr>
    <tr>
      <td>
        <font color="#585858"><b>skype</b></font>
      </td>
      <td>:</td>
      <td>luca.lanziani</td>
    </tr>
  </tbody>
</table>

I find this format quite flexible, it maintains a good alignment thanks to the table, and the colors are not too shiny nor gloomy. I’m writing this to store my signature somewhere but feel free to copy the layout, if you like it ;).