Published on

Don’t Waste Time! Here’s a Quick Way to Code HTML & CSS

Authors

Whether you’re just getting started or have been building applications for years, improving your workflow helps you to stay more productive and do works much more effectively.

Hate to WRITE lots of code over and over again?

Well, you don't need to do it anymore.

Here's our life savior Emmet.

It's actually plugin available for almost every TextEditor/IDE out there. It helps to improve our development workflow.

Let me tell you a scenario.

Suppose if you want unordered list with 5 items in HTML what would you do?

Traditional way is to write the following code

<ul>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
</ul>

Here's the Emmet way of doing it.

ul>li*5

Check out their CheetSheet to learn more awesome ways :-).