These components work with standard HTML elements and require minimal or no CSS classes. Perfect for getting started quickly with semantic, accessible markup.
Typography & Text Elements
All typography uses rem for sizing to maintain accessibility for users who change their browser font size. The body element has a size of 1.15rem (18.4px) following Simple.css sizing approach.
Heading 1 (3rem)
Heading 2 (2.6rem)
Heading 3 (2rem)
Heading 4 (1.44rem)
Heading 5 (1.15rem)
Heading 6 (0.96rem)
Text Formatting
This paragraph demonstrates various text formatting options:
Bold text for emphasis, italic text for subtle emphasis, underlined text for highlighting, and marked text for important information.
Small text for fine print and deleted text with inserted text for showing changes.
Lists
Unordered list with custom bullet styling
Glassmorphism effects applied automatically
No classes needed for basic styling
Nested lists work seamlessly:
Nested item one
Nested item two
Ordered list with custom numbering
Futuristic styling applied automatically
No classes needed for basic styling
Show Code Example
<!-- Typography Examples -->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<p><strong>Bold text</strong> and <em>italic text</em></p>
<p><mark>Highlighted text</mark> and <small>small text</small></p>
<!-- Lists -->
<ul>
<li>Unordered list item</li>
<li>Another item</li>
</ul>
<ol>
<li>Ordered list item</li>
<li>Another item</li>
</ol>