12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width">
- <title>hw-js-15-async-await-2</title>
- <link href="index.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <section class="trafficLights">
- <h2>Vehicles Traffic Lights</h2>
- <div id='root' class="wrapper">
- </div>
- <button id='switchBtn'>Switch color</button>
- </section>
- <section class="pedestrianTrafficLights">
- <h2>Pedestrian Traffic Lights</h2>
- <div id='rootPed' class="wrapper">
- </div>
- <button id='switchBtnPed'>Switch color</button>
- </section>
- <section class="speedTest">
- <h2>Speed Test</h2>
- <div id='rootSpeed' class="wrapper">
- <input type="text" id='countInpt' class='inputSpeed' placeholder=" Введите кол-во кругов для параллельных запросов">
- <input type="text" id='parallelInpt' class='inputSpeed' placeholder=" Введите кол-во запросов в одном круге">
- <button id='speedBtn'>Run speedtest</button>
- </div>
-
-
- </section>
- <script src="/js/trafficLight.js" ></script>
- <script src="/js/pedestrianTrafficLight.js"></script>
- <script src="/js/speedtest.js"></script>
-
- </body>
- </html>
|