1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Document</title>
- </head>
- <body>
- <style type="text/css">
- .container {
- text-align: center;
- margin-top: 20%;
- background-color: coral;
- width: 400px;
- margin-right: auto;
- margin-left: auto;
- border-radius: 20%;
- padding: 1%;
- }
- </style>
- <div class="container">
- <div id="example"></div>
- <br>
- <select id="value_int" name="value">
- <option value="0">квадрат суми</option>
- <option value="1">квадрат різниці</option>
- <option value="2">різницю квадратів</option>
- <option value="3">сума кубів</option>
- <option value="4">різниця кубів</option>
- </select>
- <br>
- <p>Залишилось: <span id="timer">25</span></p>
- <br>
- <button onclick="check()" type="submit">Продовжити</button>
- <br><br>
- </div>
- <script type="text/javascript" src="main.js"></script>
- </body>
- </html>
|