The <datalist> tag is used to provide a list of elements to the user to select from this particular list. Text Box auto complete is the most popular widget after the popularity of AJAX framework. We can achieve the auto complete by using the html and javascript code. Every JS framework has the built-in functionality …
HTML5
HTML5 Header Tag
The <header> element is used to display the headers in html page. There are various heading element such as <hgroup> , < h1> to < h6> element. We can use headers by using <h1> to <h6> tag which defines font size according to header tags. Note that <hggroup> tag is removed from the HTML5 specification. …
HTML5 Mark Tag
The <mark> element in HTML5 is used to highlight the specified text. The tag used to defines the marked text which is referenced in another context. In the main text, the highlighted text typically marks text that may be of special relevance for the user’s current activity, like search results. Mark element is different from …
HTML5 Events
Event is an object that describes a state change in a source or is an action or occurrence detected by the program. It can be generated by anyone interacting with the elements in a GUI. Some of the activities that cause events such as clicking button, entering character from the keyboard and many more. This …
Viewport Meta Tag For Responsive Design
Responsive design is gaining more importance thanks to the fastest growth in interest usage using mobile phones and tablets. The web design has to adopt the different layouts looking at the user agent details like browser, desktop or mobile device, etc. It is not very easy to provide such a uniform user interface across all …
5 New Features in HTML5
This tutorial explains the 5 new features introduced in the HTML5. The features are new doctype, importing scripts and resources, image element tag, canvas element and the offline or local storage in the browser. There are many other great features in the HTML5, here I just give the overview of these 5 new features. 1. …
HTML5 Validator – Validating Forms With HTML5
In this article we will see how to perform form validation with JavaScript and with html5. In this article I’ll will talk about a new feature of HTML5 which is very useful in creating validations of forms, that is the HTML5 Validator. Since long time the validation of a form field is one thing that has been …
Create HTML Forms Without Using Tables
Since last few years CSS (cascading style sheets) has transformed the way the websites are designed. It helps to raise the level of your project in good and attractive ways. In this article we will see a few different ways to create beautiful forms using CSS . Beautiful forms without using tables. In this example we will see how to …