HTML tag tutorials and examples

HTML5 audio tag

HTML5 audio tag (<audio>) can be used to play an audio in HTML page. When multiple sources are specified, browser uses the first recognized format. read more

HTML input checkbox

HTML input tag with type=checkbox can be used to create check box in html. It can also be nested in label tag. When inside label read more

HTML5 label tag examples

Label element (<label>) represents a caption and can be used with one form input element. There are two ways to associate a label to an read more

HTML li tag

HTML li tag (<li>) can be used to create a list item. It can be used either in unordered list – ul (<ul>) or in read more

HTML ol tag

HTML ol tag (<ol>) can be used to create ordered list. It can contain multiple list items using tag li (<li>) and it can be read more

HTML pre tag tutorial

HTML pre tag (<pre>) represents a block of preformatted text. By default pre tag does not collapse white spaces, and uses monospaced (fixed-width) font like read more

HTML5 template tag hello world tutorial

HTML5 template tag can be used to define template in html and instantiate it when needed. The instantiated template can be inserted in any DOM read more

HTML ul tag

HTML ul tag (<ul>) can be used to create unordered list. It can contain multiple list items using tag li (<li>) and it can be read more

HTML5 – video tag

HTML5 video tag (<video>) can be used to play a vide in HTML page. Here are some examples of video tag using webm and mp4 read more