24 lines
520 B
HTML
24 lines
520 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta http-equiv="refresh" content="0.5" />
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
.counter {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-family: 'Segoe UI', monospace;
|
|
font-size: clamp(1rem, 3vw, 2rem);
|
|
height: 80px;
|
|
overflow: hidden;
|
|
color: #3776AB;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="counter">
|
|
ПИТОН ПОБЕДА УЖЕ {{ current_age }} ЛЕТ
|
|
</body>
|
|
</html> |