Assuming that all of us installed zen code plugin if not please install it . Here we're going to show you some frequently used useful tips & tricks of zen-coding with respect to HTML type html:5 in your editor & hit tab (@HIT-TAB@) Let's see the different basic rules to create well formatted html one by one... -- 1. To create the element Write the element name and hit "TAB" e.g. (div & hit TAB) and emmet will create this for you div@HIT-TAB@ => <div></div> p@HIT-TAB@ => <p></p> -- 2. To create element with identifier Let's say we want to create "div having id as myId" We can use "#" sign like this div#myId@HIT-TAB@ => <div id="myId"></div> -- 3. To create element with class name If we want to create "div with class name myClass" we can use "." sign like this div.myClass@HIT-TAB@ ...