Initial landing page

This commit is contained in:
2026-06-11 15:34:18 +07:00
commit 706678fa30
2 changed files with 123 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Tugas WebGIS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>D1041231004 - Karoo V</h1>
<p>Portfolio Project Deployment Coolify</p>
</header>
<div class="projects">
<div class="card">
<h2>WebGIS Poverty Mapping</h2>
<p>
Sistem pemetaan keluarga miskin berbasis partisipasi rumah ibadah
untuk membantu distribusi bantuan sosial.
</p>
<a href="http://c484s0wks8gcok4004c0400w.203.24.51.230.sslip.io/login.php" target="_blank">
Buka Aplikasi
</a>
</div>
<div class="card">
<h2>WebGIS SPBU</h2>
<p>
Sistem informasi geografis untuk pemetaan lokasi SPBU
beserta informasi pendukungnya.
</p>
<a href="http://l0swgws08ksoco8cokwgc80s.203.24.51.230.sslip.io/" target="_blank">
Buka Aplikasi
</a>
</div>
</div>
<footer>
<p>Program Studi Informatika - Universitas Tanjungpura</p>
</footer>
</div>
</body>
</html>
+74
View File
@@ -0,0 +1,74 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #f4f6f9;
color: #333;
}
.container {
max-width: 1000px;
margin: auto;
padding: 40px 20px;
}
header {
text-align: center;
margin-bottom: 40px;
}
header h1 {
color: #1e3a8a;
margin-bottom: 10px;
}
header p {
color: #666;
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
}
.card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.card h2 {
margin-bottom: 12px;
color: #1e3a8a;
}
.card p {
margin-bottom: 20px;
line-height: 1.6;
}
.card a {
display: inline-block;
text-decoration: none;
background: #2563eb;
color: white;
padding: 10px 18px;
border-radius: 8px;
transition: 0.3s;
}
.card a:hover {
background: #1d4ed8;
}
footer {
margin-top: 40px;
text-align: center;
color: #666;
}