Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
testdino-hq avatar

Html Css

  • 1 installs
  • 8 repo stars
  • Updated February 25, 2026
  • testdino-hq/google-styleguides-skills

Applies Google's official HTML/CSS style guide for semantic markup, naming, accessibility, and mobile-first CSS.

About

Google's official HTML and CSS style guide covering semantic markup, naming, accessibility, and mobile-first CSS. A developer uses it to write and review consistent web markup and styling.

  • Google's official HTML/CSS style guide: semantics, naming, formatting
  • Covers accessibility, mobile-first CSS, and BEM-style naming

Html Css by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,912 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/testdino-hq/google-styleguides-skills --skill html-css

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars8
Last updatedFebruary 25, 2026
Repositorytestdino-hq/google-styleguides-skills

What it does

Applies Google's official HTML/CSS style guide for semantic markup, naming, accessibility, and mobile-first CSS.

Files

SKILL.mdMarkdownGitHub ↗

Google HTML/CSS Style Guide

Official Google HTML and CSS coding standards for consistent web development.

Quick Reference

Golden Rules

1. Semantic HTML — use appropriate elements 2. Lowercase everything — tags, attributes, values 3. Close all tags — even optional ones 4. Use meaningful class names — describe purpose, not appearance 5. Accessibility first — ARIA, alt text, semantic structure 6. Mobile-first CSS — start with mobile, enhance for desktop 7. BEM or similar — consistent naming methodology

HTML Conventions (Preview)

<!-- ✓ CORRECT -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Page Title</title>
  </head>
  <body>
    <header class="site-header">
      <h1>Welcome</h1>
    </header>
  </body>
</html>

CSS Conventions (Preview)

/* ✓ CORRECT */
.user-profile {
  display: flex;
  padding: 1rem;
}

.user-profile__avatar {
  width: 48px;
  height: 48px;
}

When to Use This Guide

  • Writing new HTML/CSS
  • Refactoring existing markup/styles
  • Code reviews
  • Setting up linting rules
  • Onboarding new team members

Install

npx skills add testdino-hq/google-styleguides-skills/html-css

Full Guide

See html-css.md for complete details, examples, and edge cases.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.