1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <style>
- .trafficLight {
- display: flex;
- justify-content: center;
- }
- .color {
- width: 300px;
- height: 300px;
- background: black;
- border-radius: 50%;
- margin: 20px;
- color: white;
- font-size: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- #btn {
- width: 100%;
- font-size: 30px;
- color: green;
- font-weight: bold;
- border-radius: 50px;
- border: 1px solid black;
- cursor: pointer;
- }
- </style>
- </head>
- <body>
- <div class="trafficLight">
- <div class="green color"></div>
- <div class="yellow color"></div>
- <div class="red color"></div>
- </div>
- <button id="btn">FASTER</button>
- <script src="js.js"></script>
- </body>
- </html>
|