Template
1
0
Files
Artyom/templates/index.html
2025-11-17 23:07:52 +03:00

31 lines
850 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quizimoto - Russian Millionaire Quiz</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<header>
<h1>Quizimoto</h1>
<p>Russian Millionaire Quiz Game</p>
</header>
<div class="welcome-content">
<h2>Welcome!</h2>
<p>Test your knowledge of Russian culture and win up to 1,000,000 ₽!</p>
<button onclick="startGame()" class="start-btn">Start Game</button>
</div>
</div>
<script>
function startGame() {
window.location.href = '/start';
}
</script>
</body>
</html>