index.html 530 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body>
  9. <div class="container">
  10. <div class="light" id="red"> </div>
  11. <div class="light" id="yellow"> </div>
  12. <div class="light" id="green"> </div>
  13. </div>
  14. <div id="pedastrian_container">
  15. <div class="light" id="red-light"> </div>
  16. <div class="light" id="green-light"> </div>
  17. <button id="button">switch</button>
  18. </div>
  19. <script src="js.js"></script>
  20. </body>
  21. </html>