Kumi
f1b9838680
Updated the script URLs for Bootstrap in multiple HTML files to ensure consistency and proper loading from the correct paths. This change resolves issues with script loading errors due to the incorrect CDN paths previously used.
83 lines
2.9 KiB
HTML
83 lines
2.9 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 - Access for Ducks only</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>Ducks only!</h1>
|
|
<p>Oops! The page you are looking for is only available from duckpond IPs.</p>
|
|
<p>Please ensure that you are in a duckpond, and not using a VPN, etc.</p>
|
|
<a href="index.html" class="btn btn-lg">Go Back Home</a>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="mt-5">
|
|
<p>© 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/npm/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>
|