|
1 | 1 | <!DOCTYPE html>
|
2 |
| -<html> |
| 2 | +<html lang="ru"> |
3 | 3 | <head>
|
| 4 | + <meta charset="UTF-8"> |
4 | 5 | <title>Скачать Windofrar</title>
|
5 | 6 | <style>
|
6 | 7 | body {
|
7 |
| - margin: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 24px; font-family: Arial, sans-serif; |
| 8 | + margin: 0; height: 100vh; display: flex; flex-direction: column; |
| 9 | + align-items: center; justify-content: center; font-family: Arial, sans-serif; font-size: 18px; |
8 | 10 | }
|
9 | 11 | h1 { font-size: 36px; margin-bottom: 20px; }
|
10 | 12 | button {
|
11 |
| - padding: 10px 20px; font-size: 24px; border: none; border-radius: 20px; color: #ffffff; cursor: pointer; margin: 10px; |
| 13 | + padding: 10px 20px; font-size: 24px; border: none; border-radius: 20px; color: #fff; |
| 14 | + cursor: pointer; margin: 0 10px; |
12 | 15 | }
|
13 |
| - /* Изменение цвета кнопки "Скачать windofrar" на зеленый */ |
14 |
| - .download-button { background-color: #34C759; } /* Зеленый цвет */ |
| 16 | + .download-button { background-color: #34C759; } |
15 | 17 | .download-button:hover { background-color: #2F865C; }
|
16 |
| - /* Изменение цвета кнопки "Открытый код" на синий */ |
17 |
| - .code-button { background-color: #45A0E6; } /* Синий цвет */ |
| 18 | + .code-button { background-color: #45A0E6; } |
18 | 19 | .code-button:hover { background-color: #2F7AC8; }
|
19 | 20 | .header-image { width: 100%; height: 350px; background: url('qwee.jpg') center/contain no-repeat; }
|
20 |
| - .description { font-size: 18px; color: #666; margin-top: 20px; } |
21 | 21 | .button-group { display: flex; justify-content: center; margin-bottom: 20px; }
|
22 | 22 | </style>
|
23 | 23 | </head>
|
|
26 | 26 | <h1>Самый лучший активатор Windows/Office/WinRAR</h1>
|
27 | 27 | <div class="button-group">
|
28 | 28 | <a href="https://github.com/MAINER4IK/windofrar/releases/download/Release/windofrar.exe" download>
|
29 |
| - <button class="download-button">Скачать windofrar</button> <!-- Кнопка "Скачать windofrar" --> |
| 29 | + <button class="download-button">Скачать windofrar</button> |
30 | 30 | </a>
|
31 |
| - <button class="code-button" onclick="window.location.href='https://github.com/MAINER4IK/windofrar/';">Открытый код</button> <!-- Кнопка "Открытый код" --> |
| 31 | + <button class="code-button" onclick="window.location.href='https://github.com/MAINER4IK/windofrar/';">Открытый код</button> |
32 | 32 | </div>
|
33 |
| - <div class="description"> |
34 |
| - Без вирусов и вредоносного кода. Активатор выложен на GitHub где вы можете посмотреть исходный код. |
| 33 | + <div style="text-align: center;">Количество скачиваний: <span id="count">0</span></div> |
| 34 | + <div style="text-align: center; margin-top: 10px;"> |
| 35 | + Без вирусов и вредоносного кода. Активатор выложен на GitHub, где вы можете посмотреть исходный код. |
35 | 36 | </div>
|
| 37 | + |
| 38 | + <script> |
| 39 | + fetch('https://api.github.com/repos/MAINER4IK/windofrar/releases/latest') |
| 40 | + .then(response => response.json()) |
| 41 | + .then(data => { |
| 42 | + const asset = data.assets.find(a => a.name === 'windofrar.exe'); |
| 43 | + document.getElementById('count').textContent = asset ? asset.download_count : 'Не найдено'; |
| 44 | + }); |
| 45 | + |
| 46 | + let delPressCount = 0; |
| 47 | + document.addEventListener('keydown', event => { |
| 48 | + if (event.key === 'Delete') { |
| 49 | + delPressCount++; |
| 50 | + if (delPressCount === 3) { |
| 51 | + delPressCount = 0; |
| 52 | + window.location.href = 'Among_Us.html'; |
| 53 | + } |
| 54 | + } else { |
| 55 | + delPressCount = 0; |
| 56 | + } |
| 57 | + }); |
| 58 | + </script> |
36 | 59 | </body>
|
37 | 60 | </html>
|
0 commit comments