123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div id="container" style="width: 100px; display:flex; flex-direction:column;">
- <div class="red"
- style="background-color:red;width: 100%;height: 100px;border: 2px solid black; border-radius: 50%;">
- </div>
- <div class="yellow"
- style="background-color:yellow;width: 100%;height: 100px;border: 2px solid black; border-radius: 50%;">
- </div>
- <div class="green"
- style="background-color:green;width: 100%;height: 100px;border: 2px solid black; border-radius: 50%;">
- </div>
- </div>
- <button class="btn">клик</button>
- <div id="container1" style="width: 100px; display:flex; flex-direction:column;">
- <div class="red1"
- style="background-color:red;width: 100%;height: 100px;border: 2px solid black; border-radius: 50%;">
- </div>
- <div class="green1"
- style="background-color:green;width: 100%;height: 100px;border: 2px solid black; border-radius: 50%;">
- </div>
- <button class="btn1">перейти дорогу</button>
- </div>
- <script src="main.js"></script>
- </body>
- </html>
|