Article Title
This is an article element, perfect for blog posts, news articles, or any self-contained content that can be distributed independently.
Ready-to-use components including selects, switches, badges, cards, avatars, and more
Card description goes here
This is the main content area of the card where you can add any content.
$99$79
Software Developer
Saved successfully
Your changes have been saved.
A complete showcase of HTML text elements and typography styles.
Click any card to view its code
This is a paragraph with various text styles. You can use marked text, small text,deleted text, and inserted text.
Use inline code for code snippets, or Ctrl + S for keyboard keys.
HTML is the standard markup language. For variables use x = y + 2.
"The only way to do great work is to love what you do."
function greeting(name) {
return `Hello, ${name}!`;
}
console.log(greeting('World'));Bold text and Strong text
Italic text and Emphasized text
Underlined text
Strikethrough text
H2O and E=mc2
This is an inline quote
All HTML form elements with beautiful styling and interactions.
Click any card to view its code
HTML table elements with modern styling and responsive design.
Click any card to view its code
A complete table with all standard elements
| Name | Role | Status | Revenue | Trend |
|---|---|---|---|---|
AJ Alice Johnson | Developer | Active | $12,450 | |
BS Bob Smith | Designer | Active | $9,200 | |
CW Carol Williams | Manager | Away | $15,800 | |
DB David Brown | Developer | Active | $11,300 | |
EM Eva Martinez | Analyst | Inactive | $8,750 | |
| Total | $57,500 | |||
| Product | Price |
|---|---|
| Widget A | $29 |
| Widget B | $49 |
| Widget C | $99 |
| Widget D | $149 |
| Month | Users | Revenue |
|---|---|---|
| January | 1,234 | $12,340 |
| February | 1,456 | $14,560 |
| March | 1,789 | $17,890 |
All types of HTML list elements with various styling options.
Click any card to view its code
Images, video, audio, and other embedded media elements.
Click any card to view its code
<picture>Responsive image container
Supports multiple sources
Click to play video
Audio player with controls
<canvas>Drawing surface
For 2D/3D graphics
<iframe>Embedded content
Maps, videos, external pages
<object>External resource
<embed>Plugin content
Beautiful CSS animations and transitions to bring your UI to life.
Click any card to view its code
Interactive UI patterns built with HTML, CSS, and JavaScript.
Click any card to view its code
Click to see a modal overlay
Warning
Please review before continuing.
Success
Operation completed successfully!
HTML5 semantic elements for better accessibility and SEO.
Click any card to view its code
<article>This is an article element, perfect for blog posts, news articles, or any self-contained content that can be distributed independently.
<section>Sections represent a thematic grouping of content, typically with a heading. Each section should have a clear purpose.
<aside><nav><details> & <summary><time> & <data>Event starts at
Price: $99.99
<address><mark> & <wbr>Search for HTML to findhighlighted results in documents.
Long words can use <wbr> for word
<ruby> & <rt>Used for showing pronunciation guides:
漢字
Complete Semantic Page Structure<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document Title</title>
</head>
<body>
<header>
<nav><!-- Navigation links --></nav>
</header>
<main>
<article>
<header><!-- Article header --></header>
<section><!-- Content section --></section>
<footer><!-- Article footer --></footer>
</article>
<aside><!-- Sidebar content --></aside>
</main>
<footer>
<address><!-- Contact information --></address>
</footer>
</body>
</html>