Created
February 4, 2019 15:37
-
-
Save sgargel/1af41879d156934e28bf01c21b22ab6c to your computer and use it in GitHub Desktop.
Semplice tabella html per SWOT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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à:<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