frontend-skills
SKILL.md
Frontend Development Skills
HTML5 Fundamentals
<!-- Semantic markup -->
<header><nav></nav></header>
<main>
<article><h1>Title</h1><p>Content</p></article>
</main>
<footer></footer>
<!-- Accessibility -->
<img alt="descriptive text" src="image.jpg">
<button aria-label="Close">×</button>
<label for="email">Email:</label>
<input id="email" type="email">