|
<!DOCTYPE html> |
|
<html lang="ja"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>クイズ</title> |
|
<style> |
|
body { |
|
font-family: Arial, sans-serif; |
|
background-color: #f0f0f0; |
|
margin: 0; |
|
padding: 0; |
|
} |
|
|
|
.container { |
|
max-width: 600px; |
|
margin: 50px auto; |
|
background-color: #fff; |
|
padding: 20px; |
|
border-radius: 8px; |
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
|
} |
|
|
|
h1 { |
|
text-align: center; |
|
color: #333; |
|
} |
|
|
|
p { |
|
margin-bottom: 20px; |
|
} |
|
|
|
a { |
|
display: block; |
|
margin-bottom: 10px; |
|
text-align: center; |
|
color: #007bff; |
|
text-decoration: none; |
|
} |
|
|
|
a:hover { |
|
text-decoration: underline; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<div class="container"> |
|
<h1>クイズ</h1> |
|
<p><a href="/quiz_capital">首都のクイズを始める</a></p> |
|
<p><a href="/quiz_element">元素の最外殻電子のクイズを始める</a></p> |
|
</div> |
|
</body> |
|
</html> |
|
|