index.html 422 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. <h3>
  9. Secret:
  10. <span id="secret"></span>
  11. </h3>
  12. <script src="../dist/lofig.min.js"></script>
  13. <script>
  14. (async () => {
  15. document.getElementById("secret").textContent = await lofig.get('secret');
  16. document.getElementById("secret").style.color = "tomato";
  17. })();
  18. </script>
  19. </body>
  20. </html>