HTMLify
index.html
Views: 42 | Author: karbonsites
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>UI Element Showcase</title> <link rel="stylesheet" href="style.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap" rel="stylesheet"> </head> <body> <header> <nav> <div class="logo">UI Lab</div> <div class="nav-links"> <a href="buttons.html">Buttons</a> <a href="inputs.html">Inputs</a> <a href="sliders.html">Sliders</a> <a href="colors.html">Colors</a> <a href="typography.html">Typography</a> <a href="about.html">About</a> </div> </nav> </header> <main class="container"> <section class="hero fade-in"> <h1>Button Showcase</h1> <p>Explore various button styles designed for clarity, hierarchy, and modern visual feedback. Increased variety available.</p> </section> <section class="component-section fade-in" id="buttons"> <h2>Interactive Buttons</h2> <div class="grid-container"> <!-- Variant 1: Primary --> <button class="btn primary">Primary Action</button> <!-- Variant 2: Secondary --> <button class="btn secondary">Secondary</button> <!-- Variant 3: Outline --> <button class="btn outline">Outline Link</button> <!-- Variant 4: Ghost --> <button class="btn ghost">Ghost Hover</button> <!-- Variant 5: Icon Button --> <button class="btn icon-btn primary" aria-label="Settings"><span class="icon">⚙</span></button> <!-- Variant 6: Disabled --> <button class="btn disabled" disabled>Disabled</button> <!-- Variant 7: Danger --> <button class="btn danger">Danger</button> <!-- Variant 8: Small --> <button class="btn small">Small</button> <!-- Variant 9: Large --> <button class="btn large">Large</button> <!-- Variant 10: Success --> <button class="btn success">Success</button> <!-- Variant 11: Accent Outline --> <button class="btn outline primary">Accent Outline</button> <!-- Variant 12: Subtly Raised --> <button class="btn secondary raised">Raised Card</button> </div> </section> </main> <script src="script.js" defer></script> <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner"> <span>✨</span> <div>Built with <b>Karbon Sites</b></div> </a> </body> </html> |