example/index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<html lang="en"> <head> <meta charset="utf-8" /> <title>To Do List</title> <meta name="description" content="A simple todo list in Vanilla JS" /> <meta name="author" content="Fabio Cevasco" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="assets/css/style.css" /> </head> <body> <div id="app"></div> <script type="module" src="assets/js/app.js"></script> </body> </html> |