index.html 452 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>test</title>
  6. </head>
  7. <body>
  8. <button id="btnLight">
  9. LIGHT
  10. </button>
  11. <input type="text" id="outLB">
  12. <input type="text" id="outL">
  13. <hr>
  14. <button id="btnDark">
  15. DARK
  16. </button>
  17. <input type="text" id="outDB">
  18. <input type="text" id="outD">
  19. <hr>
  20. <button id="res">
  21. RESULT
  22. </button>
  23. <input type="text" id="result">
  24. <script src="index.js"></script>
  25. </body>
  26. </html>