DEV Community

Akash P
Akash P

Posted on

Let's play this

Front-End developers -
Guess what is it
template>(header>ul>li*3>a)+footer ?

Ans: Its called Emmet
Output for the above Emmet:

   <template>
       <header>
           <ul>
               <li><a href=""></a></li>
               <li><a href=""></a></li>
               <li><a href=""></a></li>
           </ul>
       </header>
       <footer></footer>
   </template>
Enter fullscreen mode Exit fullscreen mode

How cool is it ?

Check how to use it
https://docs.emmet.io/
Cheat-sheet
https://docs.emmet.io/cheat-sheet/

Top comments (0)