Emmet: A guide to write Html & CSS faster
Let’s start with an example. Open your VS code. Open a folder and create a html file using .html extension. And write this :-
div.container>ul>li*3
Press Enter/Tab and Boom💥
<div class="container">
<ul>
<li></li>
<li></li>
<li></li>
</ul...
krishna-patidar.hashnode.dev4 min read