35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Web Student Safe - Launcher</title>
|
|
<style>
|
|
body { font-family: Inter, Arial, sans-serif; margin: 0; background: #f8fafc; color: #0f172a; }
|
|
.wrap { width: min(900px, 92%); margin: 40px auto; }
|
|
.card { background: #fff; border: 1px solid #e2e8f0; padding: 20px; border-radius: 10px; }
|
|
h1 { margin: 0 0 10px; font-size: 1.8rem; }
|
|
p { color: #475569; }
|
|
ul { padding-left: 1rem; }
|
|
li { margin: .6rem 0; }
|
|
a { color: #0ea5e9; text-decoration: none; font-weight: 600; }
|
|
a:hover { text-decoration: underline; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main class="wrap">
|
|
<section class="card">
|
|
<h1>Web Student Safe</h1>
|
|
<p>Launcher untuk akses halaman tiap kelompok.</p>
|
|
<ul>
|
|
<li><a href="./groups/group-01/index.html">Group 01</a></li>
|
|
<li><a href="./groups/group-02/index.html">Group 02</a></li>
|
|
<li><a href="./groups/group-03/index.html">Group 03</a></li>
|
|
<li><a href="./groups/group-04/index.html">Group 04</a></li>
|
|
<li><a href="./groups/group-05/index.html">Group 05</a></li>
|
|
</ul>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|