Initial commit: Setup Landing Page dan file pertemuan

This commit is contained in:
Romeo3
2026-06-09 13:50:00 +07:00
commit c94bc418ef
35 changed files with 8807 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>Laman Tugas WebGIS</h2>
<p style="text-align: center;">Nama: Aleksander William | NIM: D1041231003</p>
<ul class="link-list">
<li><a href="./pertemuan1/index.php">Tugas Pertemuan 1</a></li>
<li><a href="./pertemuan2/index.php">Tugas Pertemuan 2</a></li>
<li><a href="./WebGISPovertyMap/index.php">Tugas Poverty Map</a></li>
</ul>
</div>
</body>
</html>