Semantic HTML markup patterns for common UI components that work across all frameworks.
Overview
HTML Semantic Recipes provides carefully crafted HTML snippets that focus on proper semantic structure and accessibility. Instead of focusing on visual styling, these snippets give you the right HTML foundation that can be styled with your own CSS.
Features
Framework-agnostic patterns that automatically adapt to HTML, React, Vue, and Angular
Semantic HTML5 elements used appropriately
ARIA attributes included where necessary
Clean, maintainable code patterns
Installation
Open VS Code
Go to Extensions (Ctrl+Shift+X)
Search for "HTML Semantic Recipes"
Click Install
Available Snippets
Prefix
Description
breadcrumbs
Navigation breadcrumbs structure
card
Card component with header, content, and footer
cardlist
Collection of card components
checkboxlist
Checkbox list with fieldset and legend
datalist
Definition list for key-value data
formbasic
Basic form with standard fields
formvalidation
Form with inline validation messages
formvalidationsummary
Form with validation summary section
login
Login form with username and password
nav
Navigation menu structure
accordion
Expandable accordion sections
Framework Support
The extension automatically provides the appropriate syntax based on the file type:
HTML
Standard HTML5 semantic markup
React (.jsx/.tsx)
Uses className instead of class
Uses htmlFor instead of for in labels
Self-closing tags for inputs
Angular
Uses Angular-specific directives
Angular template binding syntax
Form validation states
Vue
Vue-specific attribute binding
Vue directives
Vue router integration
Usage
Open a file with the appropriate language mode (HTML, JSX, TSX, Vue, Angular)
Type one of the snippet prefixes (e.g., breadcrumbs)