Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Horizontal List</title> <style> /* ========================================================================== Styles for Demo Preview Only ========================================================================== */ body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #f1f5f9; color: #334155; margin: 0; padding: 2rem; display: flex; justify-content: center; } /* ========================================================================== Horizontal List Component Styles - Copy from here ========================================================================== */ .horizontal-list-template { --hl-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; --hl-primary-text-color: #374151; --hl-accent-color: #4f46e5; --hl-tag-bg: #e0e7ff; --hl-tag-text-color: #4338ca; --hl-tag-hover-bg: #c7d2fe; --hl-bg-color: #ffffff; --hl-border-color: #e5e7eb; font-family: var(--hl-font-family); color: var(--hl-primary-text-color); width: 100%; max-width: 800px; background-color: var(--hl-bg-color); border: 1px solid var(--hl-border-color); border-radius: .5rem; padding: 2rem; } .horizontal-list-template *, .horizontal-list-template *::before, .horizontal-list-template *::after { box-sizing: border-box; } .horizontal-list-template .list-header { margin: 0 0 1.5rem 0; font-size: .875rem; font-weight: 500; color: var(--hl-primary-text-color); } .horizontal-list { list-style: none; /* Removes default bullets */ padding: 0; /* Removes default browser padding */ margin: 0; display: flex; flex-wrap: wrap; /* Allows items to wrap onto the next line */ justify-content: center; /* Center the tags for the demo */ gap: 0.75rem; /* Sets space between items */ } .horizontal-list a { display: inline-block; text-decoration: none; color: var(--hl-tag-text-color); background-color: var(--hl-tag-bg); padding: 0.5rem 1rem; border-radius: 9999px; /* Creates the "pill" shape */ font-size: .875rem; font-weight: 500; transition: background-color 0.2s ease; } .horizontal-list a:hover { background-color: var(--hl-tag-hover-bg); } </style> </head> <body> <div class="horizontal-list-template"> <header class="list-header"> <h2>Filed Under:</h2> </header> <ul class="horizontal-list"> <li><a href="#">Quantum Mechanics</a></li> <li><a href="#">Sandwich Theory</a></li> <li><a href="#">Advanced Napping Strategies</a></li> <li><a href="#">The Sociology of Squirrels</a></li> <li><a href="#">Questionable Inventions</a></li> <li><a href="#">Historical Misconceptions</a></li> </ul> </div> </body> </html>