Files
webgis-pemetaan-sosial/index.php
T
2026-06-10 16:02:04 +07:00

70 lines
1.6 KiB
PHP

<!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/">Tugas Pertemuan 1</a></li>
<li><a href="./Pertemuan02/">Tugas Pertemuan 2</a></li>
<li><a href="./WebGISPovertyMapping/">Tugas Poverty Mapping</a></li>
</ul>
</div>
</body>
</html>