1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>HW14</title>
- <style>
- .trafficLight {
- width: 150px;
- height: 350px;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- background-color: black;
- }
- .trafficLight div {
- width: 100px;
- height: 100px;
- border-radius: 50%;
- }
- .red {
- background-color: red;
- opacity: .2;
- }
- .yellow {
- background-color: yellow;
- opacity: .2;
- }
- .green {
- background-color: green;
- opacity: .2;
- }
- </style>
- </head>
- <body>
- <div class="trafficLight">
- <div class="red"></div>
- <div class="yellow"></div>
- <div class="green"></div>
- </div>
- <button class="btn">Button</button>
- <script src="main.js"></script>
- </body>
- </html>
|