70 lines
1.6 KiB
HTML
70 lines
1.6 KiB
HTML
<!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> |