HTML Forms

HTML form is used to collect different kind of inputs from user it will collect data from the user and than it will post it to back-end application for further processing. HTML forms contain different input elements like text fields, check box, radio buttons and many more these are also known as html controls. HTML … Read more

HTML Multimedia

HTML Multimedia is visual representation of audio, video, movies and animation on web. Basically multimedia is anything you can see or hear. Webpage also contain numerous styles and formats of multimedia element. Example: audio, video, pictures, films, animations, graphics and many more. Browser Support In Early ages web browsers only provide text support without providing … Read more

HTML Video

HTML <video> element is used to embed the video/movie with webpage. Previous html versions did not support video files that were played using different plugins but html5 provide support for video file. HTML Video Tags Tag Description <video> It defines movie/video. <source> It allows to define multiple video resources within <video>. <track> It defines tracks … Read more

HTML Plug-ins

The objective of HTML plug-ins is to expand the functionality of HTML browser such as in early ages the html browser did not support audio and video tags than these plug-ins were used to embed the media with webpage. These plug-ins are also known as html helpers used to display the maps and other media … Read more

HTML YouTube Videos

It can be hard and time consuming to convert videos to various formats So, a simple alternative is to let the YouTube play videos in your webpage. YouTube ID When you save or play a video YouTube will show an ID you can use this ID to make a reference of video in html page. … Read more

HTML Select Attributes

Select element defines the drop-down list of options it allow user to select from different options. The options in the drop-down list can be given using <option> element. Now lets see the most commonly used select attributes . Select Attributes Attribute Description name This attribute is used to define the name for drop down list … Read more

HTML Input Attributes

There are different html input attributes of html input element which can be used to modify the input element. Lets see different input attributes below. HTML Input Attributes: Attribute Description value Defines default value for input field. size Defines the size(width) of input field. pattern Defines the regular expressions against which the input value is … Read more

HTML Canvas Graphics

For drawing the HTML Canvas Graphics on webpage HTML <canvas> element is used along with this JavaScript is used as well. Basically canvas is rectangular area in webpage. By default it has no content and border. HTML Canvas Graphics: Syntax Note: The id attribute should be given so that it can be further used to … Read more

HTML Input Form Attributes

The html input form attributes are written in input element having input type submit or sometimes also used with input type image. Lets see the input form attributes below: Input Form Attributes: Attribute Description form Defines the form that the input element belongs to. formaction Defines the url of file which will process the input … Read more

HTML SVG Graphics

The Html <svg> element is used as a container for html SVG(Scalable Vector Graphics) Graphics . SVG Graphics is language based on XML for two dimensional graphics. Syntax Rounded Rectangle HTML SVG Graphics: SVG Star HTML Canvas is also used for graphics. Visit HTML Canvas for more details.