Memperbaiki penamaan folder dan menambahkan index.html sebagai landing page

This commit is contained in:
powji17
2026-06-09 15:47:38 +07:00
parent cd9c12bd3c
commit 64ca4e3565
42 changed files with 70 additions and 0 deletions
+70
View File
@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page - Tugas WebGIS</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background-color: #f4f4f9;
}
.container {
max-width: 600px;
margin: 0 auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
color: #333;
}
.link-list {
list-style-type: none;
padding: 0;
}
.link-list li {
margin: 15px 0;
}
.link-list a {
display: block;
padding: 10px 15px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
text-align: center;
font-weight: bold;
}
.link-list a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h2>Landing Page - Tugas WebGIS</h2>
<p style="text-align: center;">Nama: Muhammad Fauzi | NIM: D1041231083</p>
<ul class="link-list">
<li><a href="./Pertemuan01/index.html">Tugas Pertemuan 1</a></li>
<li><a href="./Pertemuan02/index.html">Tugas Pertemuan 2</a></li>
<li><a href="./WebGISPovertyMapping/index.html">Tugas Poverty Mapping</a></li>
</ul>
</div>
</body>
</html>