Skip to content

Commit d57cdd2

Browse files
authored
Update index.html
1 parent 56f7970 commit d57cdd2

File tree

1 file changed

+35
-12
lines changed

1 file changed

+35
-12
lines changed

index.html

+35-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="ru">
33
<head>
4+
<meta charset="UTF-8">
45
<title>Скачать Windofrar</title>
56
<style>
67
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;
810
}
911
h1 { font-size: 36px; margin-bottom: 20px; }
1012
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;
1215
}
13-
/* Изменение цвета кнопки "Скачать windofrar" на зеленый */
14-
.download-button { background-color: #34C759; } /* Зеленый цвет */
16+
.download-button { background-color: #34C759; }
1517
.download-button:hover { background-color: #2F865C; }
16-
/* Изменение цвета кнопки "Открытый код" на синий */
17-
.code-button { background-color: #45A0E6; } /* Синий цвет */
18+
.code-button { background-color: #45A0E6; }
1819
.code-button:hover { background-color: #2F7AC8; }
1920
.header-image { width: 100%; height: 350px; background: url('qwee.jpg') center/contain no-repeat; }
20-
.description { font-size: 18px; color: #666; margin-top: 20px; }
2121
.button-group { display: flex; justify-content: center; margin-bottom: 20px; }
2222
</style>
2323
</head>
@@ -26,12 +26,35 @@
2626
<h1>Самый лучший активатор Windows/Office/WinRAR</h1>
2727
<div class="button-group">
2828
<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>
3030
</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>
3232
</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, где вы можете посмотреть исходный код.
3536
</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>
3659
</body>
3760
</html>

0 commit comments

Comments
 (0)