Content Elements
Lists, blockquotes, code blocks, and content formatting
Lists
Unordered List
- First list item
- Second list item with more content
- Third list item
- Fourth list item
Ordered List
- First step in the process
- Second step with details
- Third step
- Final step
Icon List
- Feature with checkmark icon
- Another great feature
- Third amazing feature
- Final feature highlight
Description List
- Design System
- A collection of reusable components and guidelines
- Component Library
- Pre-built UI elements ready for implementation
- Design Tokens
- Foundation values like colors, spacing, and typography
Blockquote & Code
Blockquote
"Design is not just what it looks like and feels like. Design is how it works."
- Steve Jobs
Inline Code
Use the padding property to add space inside elements. You can also use margin for outside spacing.
Code Block
function greet(name) {
return `Hello, ${name}!`;
}
const message = greet('World');
console.log(message);