duck.cash/404.html
Kumi f1955ab3b6
feat(UI): Add custom favicon to all HTML pages
- Added a custom favicon (duckcash-duck.png) link to 404.html, index.html, and unavailable.html for a consistent brand presence across the site.
- Improved readability of HTML code formatting in index.html pricing section.

Enhances visual branding and ensures a cohesive user experience.
2024-08-05 20:27:06 +02:00

84 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Duck.cash - Page Not Found</title>
<link
href="https://googledonts.private.coffee/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://nocdnbs.private.coffee/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://nobsdelivr.private.coffee/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link href="assets/css/style.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="assets/img/duckcash-duck.png" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img
src="assets/img/duckcash-duck.png"
alt="Duck Logo"
width="60"
height="60"
/>
Duck.cash</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#testimonials"
>Testimonials</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="error-page">
<div>
<h1>404</h1>
<p>Oops! The page you are looking for does not exist.</p>
<a href="index.html" class="btn btn-lg">Go Back Home</a>
</div>
</div>
<footer class="mt-5">
<p>&copy; 2023 Duck.cash. All rights reserved.</p>
<a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a>
</footer>
<script src="https://nobsdelivr.private.coffee/npm/@popperjs/core@2.11.7/dist/umd/popper.min.js"></script>
<script src="https://nobsdelivr.private.coffee/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
<script src="https://nocdnbs.private.coffee/ajax/libs/font-awesome/6.0.0-beta3/js/all.min.js"></script>
</body>
</html>