Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

index.html 354B

123456789101112131415161718192021
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. font-family: monospace;
  7. white-space: pre;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <script>
  13. if (typeof console === 'undefined') console = {};
  14. console.log = function (msg) {
  15. var txt = document.createTextNode(msg);
  16. document.body.appendChild(txt);
  17. };
  18. </script>
  19. <script src="bundle.js"></script>
  20. </body>
  21. </html>