Skip to content

Instantly share code, notes, and snippets.

@sgargel
Created February 4, 2019 15:37
Show Gist options
  • Save sgargel/1af41879d156934e28bf01c21b22ab6c to your computer and use it in GitHub Desktop.
Save sgargel/1af41879d156934e28bf01c21b22ab6c to your computer and use it in GitHub Desktop.
Semplice tabella html per SWOT
<html>
<head><title>Analisi SWOT</title></head>
<body>
<h1>SWOT: argomento</h1>
<table border="1">
<tr>
<td>Forza:<br>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</td>
<td>Debolezza:<br>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</td>
</tr>
<tr>
<td>Opportunit&agrave;:<br>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</td>
<td>Rischi:<br>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment