Category Archives: HTML

HTML5 Datalist

Datalist Tag is an input element, which is used as both dropdown and textbox element. The main advantage of datalist is autocomplete option. Syntax for datalist will looks like the combination of input element textbox and dropdown. All options have to be inside the datalist and datalist’s ID should be declared as input element list… Read More »

HTML5 Progress Bar

HTML5 Progress Bar will be used to minimize the html coding. <progress> tag is used to make progress bar. Below is the progress bar syntax and example. The parameter max is the maximum value for the progress bar and parameter value is the percentage out of maximum value.     [code type=html] <progress value=”40″ max=”100″></progress> [/code]… Read More »