12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div class="container">
- <div class="light" id="red"> </div>
- <div class="light" id="yellow"> </div>
- <div class="light" id="green"> </div>
- </div>
- <div id="pedastrian_container">
- <div class="light" id="red-light"> </div>
- <div class="light" id="green-light"> </div>
- <button id="button">switch</button>
- </div>
- <script src="js.js"></script>
- </body>
- </html>
|