Emmet for HTML: A Beginner’s Guide to Writing Faster Markup
1. First: how slow HTML feels without Emmet
Imagine writing this by hand:
<div class="card">
<h2 id="title">Hello</h2>
<p class="text">Welcome</p>
</div>
That’s:
lots of angle brackets
closing tags
repeated typing
easy to make mistakes
Now...
emmetsforhtmlbyyashveer.hashnode.dev2 min read