Robin Glauser


My Blog about Development, Design and my random thoughts.

Emmet – Write HTML at lightning speed

Are you looking to get faster at writing HTML and CSS? In this case you will love the Emmet toolkit integrated in PhpStorm. It enables you to write for example the following code: ul>li*5 And get the following output by expanding it with the tabulator.  <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> You can also create a HTML5 base template by … Read More