🌐 MuizenMesh Webring HTML/CSS Demo

Style your webring banner with pure HTML, CSS, and JavaScript

📋 How to Use

Copy the basic HTML embed code, then add one of our CSS themes to customize the appearance. No React or build tools required - just HTML, CSS, and JavaScript!

1. Basic HTML Embed

<webring-banner>
    <p>Member of <a href="https://meshring.netlify.app/">MuizenMesh Webring</a></p>
    <a href="https://meshring.netlify.app/prev">Previous</a>
    <a href="https://meshring.netlify.app/random">Random</a>
    <a href="https://meshring.netlify.app/next">Next</a>
</webring-banner>
<script async src="https://meshring.netlify.app/embed.js"></script>

2. Add Custom CSS Theme

Include one of the CSS files below to style your webring banner:

<link rel="stylesheet" href="webring-theme-ocean.css">

🎯 Default Theme

Clean design with the standard webring styling

View CSS Code
/* No additional CSS needed - uses default styling */

🌊 Ocean Theme

Blue ocean-inspired colors perfect for coastal communities

View CSS Code
.theme-ocean {
  --webring-bg: #e3f2fd;
  --webring-border: #90caf9;
  --webring-text: #0d47a1;
  --webring-accent: #1976d2;
}

🌅 Sunset Theme

Warm orange and yellow colors like a beach sunset

View CSS Code
.theme-sunset {
  --webring-bg: #fff3e0;
  --webring-border: #ffcc02;
  --webring-text: #e65100;
  --webring-accent: #ff9800;
}

🌙 Dark Theme

Dark background with cyan accents for modern sites

View CSS Code
.theme-dark {
  --webring-bg: #212529;
  --webring-border: #495057;
  --webring-text: #f8f9fa;
  --webring-accent: #0dcaf0;
}

🎨 Minimal Theme

Clean gray styling for minimal designs

View CSS Code
.theme-minimal {
  --webring-bg: #ffffff;
  --webring-border: #e9ecef;
  --webring-text: #6c757d;
  --webring-accent: #343a40;
}

🌸 Tokyo Theme

Japanese-inspired pink and purple colors

View CSS Code
.theme-tokyo {
  --webring-bg: #fef7f0;
  --webring-border: #ff6b9d;
  --webring-text: #2d1b69;
  --webring-accent: #ff006e;
}

🧛 Dracula Theme

Dark purple theme inspired by Dracula colors

View CSS Code
.theme-dracula {
  --webring-bg: #282a36;
  --webring-border: #6272a4;
  --webring-text: #f8f8f2;
  --webring-accent: #bd93f9;
}

🕺 Disco Theme

Retro neon colors with cyan and magenta

View CSS Code
.theme-disco {
  --webring-bg: #1a0033;
  --webring-border: #ff00ff;
  --webring-text: #ffffff;
  --webring-accent: #00ffff;
}

🎪 Custom Theme

Create your own theme with CSS custom properties

View CSS Code
.theme-custom {
  --webring-bg: #f0f8ff;
  --webring-border: #9370db;
  --webring-text: #4b0082;
  --webring-accent: #8a2be2;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
}

📦 Download Theme Files

Download individual CSS files for each theme: