Kumi
e6373d0535
Added a hero section for better user engagement and moved informational content into a clearer main section. The footer with a credit link enhances credibility. Extra styling improves readability with a structured presentation. Updated bootstrap resource links for consistency.
63 lines
No EOL
1.6 KiB
HTML
63 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
/>
|
|
<title>nobsdelivr</title>
|
|
<link
|
|
href="npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<style>
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
.hero {
|
|
background: gray;
|
|
color: white;
|
|
padding: 100px 0;
|
|
}
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
}
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
}
|
|
.example-code {
|
|
background-color: #e9ecef;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="hero text-center">
|
|
<div class="container">
|
|
<h1 class="display-4">Welcome to nobsdelivr</h1>
|
|
<p class="lead">
|
|
nobsdelivr is a simple proxy to cdn.jsdelivr.net. Use it to proxy your
|
|
requests to the CDN.
|
|
</p>
|
|
</div>
|
|
</header>
|
|
<main class="container text-center my-5">
|
|
<p class="lead">
|
|
To use the proxy, simply replace
|
|
<code>https://cdn.jsdelivr.net/</code> with <code>{{ domain }}</code> in
|
|
the URL.
|
|
</p>
|
|
<p>Example:</p>
|
|
<div class="example-code">
|
|
<code>{{ domain }}npm/bootstrap@5.1.3/dist/css/bootstrap.min.css</code>
|
|
</div>
|
|
</main>
|
|
<footer class="text-center py-4">
|
|
<p>Brought to you by <a href="https://private.coffee">Private.coffee</a></p>
|
|
</footer>
|
|
<script src="npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |