index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. <style>
  8. .trafficLight {
  9. display: flex;
  10. justify-content: center;
  11. }
  12. .color {
  13. width: 300px;
  14. height: 300px;
  15. background: black;
  16. border-radius: 50%;
  17. margin: 20px;
  18. color: white;
  19. font-size: 40px;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. }
  24. #btn {
  25. width: 100%;
  26. font-size: 30px;
  27. color: green;
  28. font-weight: bold;
  29. border-radius: 50px;
  30. border: 1px solid black;
  31. cursor: pointer;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="trafficLight">
  37. <div class="green color"></div>
  38. <div class="yellow color"></div>
  39. <div class="red color"></div>
  40. </div>
  41. <button id="btn">FASTER</button>
  42. <script src="js.js"></script>
  43. </body>
  44. </html>