How to disable autocomplete in HTML?

HTML5 MoreOnFew

The autocomplete feature has been of a great help as a website visitor especially if you have a long form that you might fill more than once. The autocomplete feature of HTML is basically used to fetch previous input values from the input field. However, not every time do you require autocomplete. Consider an input that … Read more

How to use Conditional Comments in HTML

HTML5 MoreOnFew

Many of us would have come across scenarios where we wanted a different Stylesheet or CSS properties for IE (Internet Explorer). While many would have resorted to Feature detection/browser detection there is an easier approach to achieve this. You can use Conditional comments to target Internet Explorer or different versions of IE. Conditional Comments are … Read more