Emmet (formerly Zen Coding) is a web-developer’s toolkit that can greatly improve your HTML & CSS workflow. Last year my blogpost gives insight on Zen Coding with Notepad++. Things have changed since last year and for better. I haved ditched Notepad++ for SublimeText2 and ZenCoding project is changed to Emmet project. Emmet is developed and […]

Read More →

For web developers(especially front end) writing html is an everyday chore. How about spicing things up. How about using CSS selectors not just to style and access elements, but to generate code? For example, what if you could write this… div#footer>p+span.links>a …and see this as the output? <div id=”footer”> <p></p> <span><a href=””></a></span> </div> Isn’t that […]

Read More →