<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nonval.id – Layanan Cerdas</title>
<style>
:root {
--primary: #0d6efd;
--secondary: #f8f9fa;
--bg-gradient: linear-gradient(135deg, #e3f2fd, #ffffff);
}
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--bg-gradient);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
color: #212529;
}
header {
text-align: center;
margin-bottom: 40px;
animation: fadeInDown 1s ease-out;
}
h1 {
font-size: 2.8em;
margin-bottom: 10px;
}
p {
font-size: 1.2em;
color: #555;
}
.links {
display: flex;
gap: 30px;
flex-wrap: wrap;
justify-content: center;
margin-top: 30px;
animation: fadeInUp 1s ease-out;
}
a.button {
text-decoration: none;
padding: 15px 30px;
font-size: 1.1em;
color: white;
background-color: var(--primary);
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
transition: background-color 0.3s, transform 0.2s;
}
a.button:hover {
background-color: #0b5ed7;
transform: translateY(-2px);
}
footer {
margin-top: 60px;
font-size: 0.9em;
color: #888;
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
h1 {
font-size: 2em;
}
.links {
flex-direction: column;
gap: 20px;
}
}
</style>
</head>
<body>
<header>
<h1>Selamat Datang di Nonval.id</h1>
<p>Layanan cerdas untuk kebutuhan harian Anda</p>
</header>
<div class="links">
<a class="button" href="https://chiffre-en-lettre.nonval.id/" target="_blank">
?Chiffre Lettre
</a>
<a class="button" href="https://nonval.id/kodepos/" target="_blank">
📮 Cari Kode Pos Indonesia
</a>
</div>
<footer>
© 2025 2025 Nonval.id –
</footer>
</body>
</html>