html-fundamentals

📁 simon-jarillo/prueba-skills 📅 Jan 26, 2026
2
总安装量
2
周安装量
#67587
全站排名
安装命令
npx skills add https://github.com/simon-jarillo/prueba-skills --skill html-fundamentals

Agent 安装分布

claude-code 2
codex 1
github-copilot 1
gemini-cli 1

Skill 文档

HTML Fundamentals

Modern, semantic, and accessible HTML5 markup.

Semantic Structure

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Title</title>
</head>
<body>
    <header>
        <nav aria-label="Primary">
            <ul>
                <li><a href="/">Home</a></li>
            </ul>
        </nav>
    </header>
    
    <main>
        <article>
            <h1>Title</h1>
            <p>Content</p>
        </article>
    </main>
    
    <footer>
        <p>&copy; 2026</p>
    </footer>
</body>
</html>

Resources