30 lines
787 B
HTML
30 lines
787 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>404 - Not Found</title>
|
|
<style>
|
|
body {
|
|
font-family: "Arial", sans-serif;
|
|
background-color: #f4f4f4;
|
|
text-align: center;
|
|
padding: 50px;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
|
|
p {
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>404 - Not Found</h1>
|
|
<p>Maaf, Endpoint yang Anda cari tidak ditemukan.</p>
|
|
</body>
|
|
</html>
|