br0tcabeln/templates/start.html
2024-08-17 18:57:14 +02:00

48 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vokabeltrainer</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
h1 {
color: #333;
margin-top: 50px;
}
.container {
margin-top: 30px;
}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 18px;
color: white;
background-color: #007bff;
border: none;
border-radius: 5px;
text-decoration: none;
margin: 10px;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Vokabeltrainer</h1>
<div class="container">
<a href="/train" class="button">Vokabeln trainieren</a>
<a href="/settings" class="button">Einstellungen</a>
<a href="/vocab" class="button">Meine Vokabeln</a>
</div>
</body>
</html>