Create index.html
Browse files- templates/index.html +53 -0
templates/index.html
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="ja">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>クイズ</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
background-color: #f0f0f0;
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
}
|
14 |
+
|
15 |
+
.container {
|
16 |
+
max-width: 600px;
|
17 |
+
margin: 50px auto;
|
18 |
+
background-color: #fff;
|
19 |
+
padding: 20px;
|
20 |
+
border-radius: 8px;
|
21 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
22 |
+
}
|
23 |
+
|
24 |
+
h1 {
|
25 |
+
text-align: center;
|
26 |
+
color: #333;
|
27 |
+
}
|
28 |
+
|
29 |
+
p {
|
30 |
+
margin-bottom: 20px;
|
31 |
+
}
|
32 |
+
|
33 |
+
a {
|
34 |
+
display: block;
|
35 |
+
margin-bottom: 10px;
|
36 |
+
text-align: center;
|
37 |
+
color: #007bff;
|
38 |
+
text-decoration: none;
|
39 |
+
}
|
40 |
+
|
41 |
+
a:hover {
|
42 |
+
text-decoration: underline;
|
43 |
+
}
|
44 |
+
</style>
|
45 |
+
</head>
|
46 |
+
<body>
|
47 |
+
<div class="container">
|
48 |
+
<h1>クイズ</h1>
|
49 |
+
<p><a href="/quiz_capital">首都のクイズを始める</a></p>
|
50 |
+
<p><a href="/quiz_element">元素の最外殻電子のクイズを始める</a></p>
|
51 |
+
</div>
|
52 |
+
</body>
|
53 |
+
</html>
|