How to restrict number of characters in input field

HTML is such a beautiful language. Yes it has it built in to restrict the number of characters of any input field to whatever you want. To restrict the number of alphabets or numbers inside an input field on your html form simply use maxlength attribute. For example: <input type=”text” name=”myinput” maxlength=”10″ value=”” /> This […]

How to disable autofill/autocomplete in html form textbox

Althought these settings from browser to browser that will they autofill some forms or not, you can suggest them if you want to enable or disable autocomplete for your forms or any specific field in your html forms. To disable the autocomplete option for html forms, use this code (attribue) : autocomplete=”off” To disable autocomplete […]

New Elements introduced in HTML5

New Elements in HTML5 Internet and the way we use web is not the same as it was a decade ago. The web standards and internet as a whole has changed alot since 1999 when HTML 4.01 was released and made a standard back then. In todays world of internet and markup, there are many […]

Introduction to HTML5

What is HTML? HTML stand for Hyper Text Markup Language. What is HTML5? HTML5 is the next generation of HTML. HTML5 is going to be the new standard not only for HTML , XHTML and the HTML DOM (data object model). HTML5 is still under process of development. HTML5 is supported by most modern internet […]