Emmet for HTML: A Beginner’s Guide to Writing Faster Markup
When you first start writing HTML, it feels slow.
You type:
<div></div>
<div></div>
<div></div>
Again and again.
It works… but it takes time.
Now imagine typing just this:
div*3
And instantly getting:
<div></div>
<div></div>
<div></div>
That magic...
mnraza.hashnode.dev3 min read