pythonpobeda/templates/counter.html

24 lines
520 B
HTML
Raw Permalink Normal View History

2025-01-16 20:15:15 +03:00
<!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>