-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 1.12 KB
/
index.html
File metadata and controls
21 lines (21 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ページ目次</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 flex flex-col items-center p-6">
<h1 class="text-3xl font-bold mb-6">サイゼリヤ 暗記チェック</h1>
<p class="text-lg mb-6">以下のリンクから各ページへ移動できます。
<div class="bg-white p-6 rounded shadow max-w-md w-full">
<ul class="list-disc list-inside">
<li><a href="/memoSize/category/main" class="text-blue-500 hover:underline">全範囲</a></li>
<li><a href="/memoSize/category/01" class="text-blue-500 hover:underline">1200, 1300, 1400, 2100, 4300, 5100番台(計37品)</a></li>
<li><a href="/memoSize/category/02" class="text-blue-500 hover:underline">3100, 3200,3300, 3400番台(計36品)</a></li>
<li><a href="/memoSize/category/03" class="text-blue-500 hover:underline">1100, 2200, 2300, 2400, 3900, 4100番台(計52品)</a></li>
</ul>
</div>
</body>
</html>