forked from technolyceum/ai6-m2
23 lines
624 B
HTML
23 lines
624 B
HTML
<!-- index.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Russian Quiz Game</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Russian Quiz</h1>
|
|
<p>Answer questions about Russian culture!</p>
|
|
<button onclick="startGame()" class="start-btn">Start Game</button>
|
|
</div>
|
|
|
|
<script>
|
|
function startGame() {
|
|
window.location.href = '/start';
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |