HTML wrap Attribute

HTML wrap Attribute: This attribute specifies how the text in a text area is to be wrapped when submitted in a form. This attribute can be applied to the <textarea> element. …

Read more

HTML width Attribute

HTML width Attribute: The HTML width attribute specifies the width of the element, in pixels. HTML width Attribute This attribute can be applied on <canvas>,<embed>,<iframe>,<img>,<input>,<object>,<video> elements. Browser Support This attribute is supported by …

Read more

HTML value Attribute

HTML value Attribute: The HTML value Attribute is used to specify the value of the element with which it is used. It has different meaning for different HTML elements. It can …

Read more

HTML usemap Attribute

HTML usemap Attribute: This attribute specifies an image or as an image-map. While the usemap attribute is associated with an <map> element’s name or id attribute and creates a relationship between …

Read more

HTML type Attribute

HTML type Attribute: This attribute can be used for the button elements, the type attribute specifies the type of button. It can be applied on <button>,<embed>,<input>,<link>,<menu>,<object>,<script>,<source>,<style> elements. HTML type Attribute For embed, …

Read more

HTML translate Attribute

HTML translate Attribute: This attribute specifies whether the content of an element should be translated or not. Test: Use the Google translate box (at the top of the page) to change …

Read more

HTML title Attribute

HTML title Attribute: This attribute specifies extra information about an element. When the mouse moves over the element then it shows the information. HTML title Attribute This attribute can be applied to all …

Read more

HTML target Attribute

HTML target Attribute: This attribute  specifies where to open the linked document when <a> and <area> elements are used.is applied to <a>,<area>,<base> and <form> elements. HTML target Attribute This attribute specifies …

Read more

HTML style Attribute

HTML style Attribute: This attribute defines an inline style for an element. Styles in HTML are basically rules that describe how a document will be presented in a browser. Style information …

Read more

HTML step Attribute

HTML step Attribute: This attribute defines the legal number intervals for an <input> element. While the default stepping value for number inputs is 1. Usage: It works with the following …

Read more

HTML start Attribute

HTML start Attribute: This attribute defines the start value of the first list item in an ordered list. HTML start Attribute This attribute can be applied on <ol> element. Syntax: <ol …

Read more

HTML srcset Attribute

HTML srcset Attribute: This attribute defines the URL of the image to use in different situations. HTML srcset Attribute This attribute is used when <source> is used in <picture>. Browser Support …

Read more

HTML srclang Attribute

HTML srclang Attribute: This attribute defines the language of the track text data. And this attribute is required if kind=” subtitles”. HTML srclang Attribute This attribute can be applied to <track> …

Read more

HTML srcdoc Attribute

HTML srcdoc Attribute: This attribute specifies the HTML content of the page to show in the inline frame. This attribute is expected to be used together with the sandbox and seamless …

Read more

HTML src Attribute

HTML src Attribute: This attribute defines the URL of the external resource. And the <audio>, <embed>, <source>, <track> and <video>tags are not supported in HTML4. These are newly added in HTML5. …

Read more

HTML spellcheck Attribute

HTML spellcheck Attribute: This attribute specifies whether the element is to have its spelling and grammar checked or not. The following can be spellchecked: Text values in input elements (not password) …

Read more

HTML span Attribute

HTML span Attribute:This attribute specifies the number of columns a <col> or <colgroup> element should span. HTML span Attribute This attribute can be applied on <col> and <colgroup> elements. Syntax: …

Read more

HTML sizes Attribute

HTML sizes Attribute: This attribute specifies the sizes of icons for visual media. This attribute is only used if rel=”icon”. It was newly added to the HTML5 attribute. HTML sizes …

Read more

HTML size Attribute

HTML size Attribute:This attribute can be applied on <input>,<select> elements. When <input> element is used it specifies the visible width, in characters, of an <input> element. HTML size Attribute When …

Read more

HTML shape Attribute

HTML shape Attribute: This attribute defines the shape of an area. This attribute is used together with the coords attribute to specify the size, shape, and placement of an area. …

Read more

HTML selected Attribute

HTML selected Attribute: This attribute is defined as a boolean attribute. This attribute specifies that an option should be pre-selected when the page loads. And the pre-selected option will be displayed …

Read more

HTML scope Attribute

HTML scope Attribute: This attribute defines whether a header cell is a header for a column, row, or group of columns or rows. HTML scope Attribute This attribute can be …

Read more

HTML sandbox Attribute

HTML sandbox Attribute: This attribute defines an extra set of restrictions for the content in the iframe. When the sandbox attribute is present, and it will: treat the content as being …

Read more

HTML rows Attribute

HTML rows Attribute: This attribute defines the visible height of a text area in lines. And the size of a textarea can also be specified by the CSS height and width properties. …

Read more

HTML reversed Attribute

HTML reversed Attribute: This attribute is defined as a boolean attribute. It specifies that the list order should be descending instead of ascending. HTML reversed Attribute This attribute can be applied on …

Read more

HTML required Attribute

HTML required Attribute: This attribute is defined as a boolean attribute. It specifies that the element must be filled out before submitting the form. Elements: This attributes can be associated with …

Read more

HTML rel Attribute

HTML rel Attribute: This attribute defines the relationship between the current document and the linked document. Some values removed and some values added in HTML 5. HTML rel Attribute This attribute …

Read more

HTML preload Attribute

HTML preload Attribute: This attribute permits the author to provide a hint to the browser about what the author thinks will lead to the best user experience. It specifies if and …

Read more

HTML poster Attribute

HTML poster Attribute: This attribute defines an image to be shown while the video is downloading or until the user hits the play button. If this is not included, the first …

Read more

HTML pattern Attribute

HTML pattern Attribute: This attribute defines a regular expression that the <input> element value is checked against. And the pattern attribute works with the following input types: text, date, search, url, tel, …

Read more

HTML optimum Attribute

HTML optimum Attribute: This attribute specifies the range where the gauge’s value is considered to be an optimal value. It must be within the range i.e between min and max. When it …

Read more

HTML open Attribute

HTML open Attribute: This attribute can be defined as a boolean attribute. It specifies that the details should be visible by default. If it is not present by default than details are …

Read more

HTML onwheel attribute

HTML onwheel attribute: This attribute defines the wheel of a pointing device is rolled up or down over an element. The onwheel attribute also defines the user scrolls on an …

Read more

HTML onwaiting Attribute

HTML onwaiting Attribute: This attribute defines a script to run when the video stops because it needs to buffer the next frame. The onwaiting attribute is a section of the Event Attributes. …

Read more

HTML onunload Attribute

HTML onunload Attribute: This attribute is defined as it fires once a page has unloaded. Onunload occurs when the user navigates away from the page (by clicking on a link, submitting …

Read more

HTML ontoggle Attribute

HTML ontoggle Attribute: This attribute is defined as it fires when the user opens or closes the <details> element. The <details> element specifies additional details that the user can view or hide …

Read more

HTML ontimeupdate Attribute

HTML ontimeupdate Attribute: This attribute defines a script to run when the playing position of an audio or video has changed. HTML ontimeupdate Attribute This  attribute can be applied on <audio> and …

Read more

HTML onsuspend Attribute

HTML onsuspend Attribute: This attribute defines a script to run when the browser is intentionally not getting media data. This event occurs when the loading of the media is suspended (prevented …

Read more

HTML onsubmit Attribute

HTML onsubmit Attribute: The HTML onsubmit attribute is defined as it fires when a form is submitted. HTML onsubmit Attribute The HTML onsubmit attribute can be applied on <form> element. Attribute …

Read more

HTML onstorage attribute

HTML onstorage attribute: The HTML onstorage attribute is triggered when the browser’s local storage area is updated. HTML onstorage attribute This attribute is part of the event attribute and supports …

Read more

HTML onstalled Attribute

HTML onstalled Attribute: The HTML onstalled attribute defines a script to run when the browser is trying to get media data, but data is not available. The events that happen when …

Read more

HTML onselect Attribute

HTML onselect Attribute: HTML onselect attribute is defined as it fires after some text has been selected in an element. onselect attribute is a part of the Event Attributes. It is …

Read more

HTML onseeking Attribute

HTML onseeking Attribute: The HTML onseeking attribute defines a script to run when the user starts skipping to a new position in the audio or video. HTML4 does not support<audio> and …

Read more

HTML onseeked Attribute

HTML onseeked Attribute: The HTML onseeked Attribute defines a script to run when the user is finished skipping to a new position in the audio or video. The onseeked attribute is …

Read more

HTML onsearch Attribute

HTML onsearch Attribute: The HTML onsearch attribute can be defined as it fires when a user presses the “ENTER” key or clicks the “x” button in an <input> element with type=”search”. …

Read more

HTML onscroll Attribute

HTML onscroll Attribute: The HTML onscroll attribute is defined as it fires when an element’s scrollbar is being scrolled. The onscroll attribute is the part of the event attribute. HTML4 does …

Read more

HTML onresize Attribute

HTML onresize Attribute: The HTML onresize Attribute is defined as it fires when the browser window is resized. The onresize attribute is part of the Event attributes. HTML onresize Attribute This …

Read more

HTML onreset Attribute

HTML onreset Attribute: The HTML onreset Attribute is defined as it fires when a form is reset. The onreset attribute is part of the Event attributes and can be used on …

Read more

HTML onprogress Attribute

HTML onprogress Attribute: The HTML onprogress attribute is defined as a script to be run when the browser is downloading the specified audio or video. During the loading process of an …

Read more

HTML onpopstate attribute

HTML onpopstate attribute: The HTML onpopstate attribute is triggered when the history of the window changes. And the onpopstate event is dispatched to the window every time the active history …

Read more

HTML onplaying Attribute

HTML onplaying Attribute: The HTML onplaying attribute is defined as a script to run when the audio/video has started playing. The onplaying attribute is part of Event Attributes. HTML onplaying Attribute …

Read more

HTML onplay Attribute

HTML onplay Attribute: The HTML onplay attribute is defined as a script to be run when the audio/video has been started or is no longer paused. The onplay attribute is Event …

Read more

HTML onpause attribute

HTML onpause attribute: The HTML onpause attribute used to trigger an event when the audio/video is paused either by the user or programmatically. The onpause attribute is a part of the …

Read more

HTML onpaste Attribute

HTML onpaste Attribute: This attribute is defined as it fires when the user passes some content in an element. This event attribute is supported by all HTML elements. It is mostly …

Read more

HTML onpageshow Attribute

HTML onpageshow Attribute: This attribute is defined as when a user navigates to a webpage then onpageshow events occurs. It occurs every time when the page is loaded whereas the onload …

Read more

HTML onpagehide attribute

HTML onpagehide attribute: This attribute occurs when the user is redirecting away from a webpage. The onpagehide event is frequently used instead of the onunload event, as the onunload event …

Read more

HTML ononline Attribute

HTML ononline Attribute: The HTML ononline attribute is defined as it fires when the browser starts to work online. This event attribute contains a single value script which works when browser …

Read more

HTML onoffline Attribute

HTML onoffline Attribute: The HTML onoffline attribute is defined as it fires when the browser starts to work offline. It is supported by <body> tag only. It is the opposite of …

Read more

HTML onmousewheel Attribute

HTML onmousewheel Attribute: The HTML onmousewheel attribute is defined as it fires when the mouse wheel is rolled up or down over an element. The onmousewheel attribute is deprecated, you …

Read more

HTML onmouseup Attribute

HTML onmouseup Attribute: This attribute is defined as it fires when a mouse button is released over the element. While the order of events occurs related to the onmouseup event. onmousedown …

Read more

HTML onmouseover Attribute

HTML onmouseover Attribute: The HTML onmouseover Attribute is defined as it fires when the mouse pointer moves over an element. Supported Tags: This attribute is supported by almost all HTML elements …

Read more

HTML onmouseout Attribute

HTML onmouseout Attribute: The HTML onmouseout attribute is defined as it fires when the mouse pointer moves out of an element. And the onmouseout attribute is often used together with the …

Read more

HTML onmousemove Attribute

HTML onmousemove Attribute: This attribute fires when the pointer is moving while it is over an element. This attribute contains a single value script which works when onmousemove attribute called. The onmousemove …

Read more

HTML onmousedown Attribute

HTML onmousedown Attribute: The HTML onmousedown attribute is defined as it fires when a mouse button is pressed down on the element. It is supported by all HTML elements. The script …

Read more

HTML onloadstart Attribute

HTML onloadstart Attribute: The HTML onloadstart attribute is defined as an event occurs when the browser starts looking for the specified audio or video, this happens when the loading process starts. …

Read more

HTML onloadedmetadata Attribute

HTML onloadedmetadata Attribute: The HTML onloadedmetadata attribute can be defined as an event occurs when metadata for the specified audio/video has been loaded. Metadata for audio/video consists of duration, dimensions (video …

Read more

HTML onload Attribute

HTML onload Attribute: This attribute is defined as it fires when an object has been loaded. It is mostly used within the <body> element to execute a script. It can be used …

Read more

HTML onkeyup Attribute

HTML onkeyup Attribute: The HTML onkeyup attribute is defined as it fires when the user releases a key. This attribute contains a single value script which works when the keyboard key …

Read more

HTML onkeydown Attribute

HTML onkeydown Attribute: This attribute is defined as it fires when the user presses a key. And this attribute contains a single value script which works when any key pressed from …

Read more

HTML oninvalid Attribute

HTML oninvalid Attribute: This attribute is defined as an oninvalid error occurs when a submittable <input> element is invalid. The script runs when a user clicks on the submit button. The …

Read more

HTML oninput Attribute

HTML oninput Attribute: This attribute is defined as it fires when an element gets user input. And this attribute mainly fires when the user changes the value of <input> and <textarea> element. …

Read more

HTML onhashchange Attribute

HTML onhashchange Attribute: This attribute is defined as it fires when there have been changes to the anchor part of the current URL.  The anchor part starts with a ‘#’ symbol of …

Read more

HTML onfocus Attribute

HTML onfocus Attribute: This attribute is defined as it fires at the moment when the element is focused. And this event attribute is mostly used with <input>, <select>, <a> elements. …

Read more

HTML onerror Attribute

HTML onerror Attribute: This attribute is defined as an error event occurs when an error occurs during the loading of a media. While the external file may contain a document file or …

Read more

HTML onended attribute

HTML onended attribute: This attribute can be used when the audio/video has reached to end. This event is useful for messages like “thanks for listening”, “thanks for watching”, etc. And the …

Read more

HTML onemptied Attribute

HTML onemptied Attribute: This attribute is defined as it fires when the current playlist is empty. And the onemptied attribute is a section of the Event Attributes. HTML onemptied Attribute The …

Read more

HTML ondurationchange Attribute

HTML ondurationchange Attribute: The HTML ondurationchange attribute is defined as the duration change an event occurs when the duration data of a specified content(audio or video) is changed. During the loading …

Read more

HTML ondrop Attribute

HTML ondrop Attribute: This attribute is defined as it fires when an element is dragged and dropped on a valid drop target. The drag and drop is the common feature …

Read more

HTML ondragstart Attribute

HTML ondragstart Attribute: This attribute is defined as it fires when the user starts dragging an element. Links and images are draggable by default and do not need the draggable attribute. …

Read more

HTML ondragover Attribute

HTML ondragover Attribute fires when the user drags an element over a valid drop target. By default, data/elements cannot be dropped in other elements. To allow a drop, we must …

Read more

HTML ondragenter Attribute

HTML ondragenter Attribute fires when a draggable element enters a valid drop target. And the ondragenter and ondragleave events can help the user to understand that a draggable element is …

Read more

HTML ondragend Attribute

HTML ondragend Attribute: This attribute is defined as it fires when the user has finished dragging the elements. And the drag and drop feature is common in HTML5. Any element can make …

Read more

HTML ondrag Attribute

HTML ondrag Attribute: This attribute is defined as it fires when an element or text selection is being dragged. This event is very similar to a drag and drop event. And …

Read more

HTML ondblclick Attribute

HTML ondblclick Attribute: This attribute is defined as it fires on a mouse double-click on the element. HTML ondblclick Attribute This attribute can be applied to all the HTML elements. Syntax: …

Read more

HTML oncut Attribute

HTML oncut Attribute: This attribute fires when the user cuts the content of an element. It is a Boolean type attribute. And it is supported by all HTML elements but it …

Read more

HTML oncuechange Attribute

HTML oncuechange Attribute: This attribute specifies a script to run when the cue changes in an <track> element. And the oncuechange attribute is a section of the Event Attributes. HTML oncuechange Attribute …

Read more

HTML oncopy attribute

HTML oncopy attribute: In this attribute triggers when users copy the content in the element. This attribute accepts a single value script to run. There are three actions to copy the …

Read more

HTML oncontextmenu attribute

HTML oncontextmenu attribute: The HTML oncontextmenu attribute can be used when the user right-clicks on an element to open the context menu. And the HTML4 does not support the oncontextmenu …

Read more

HTML onclick attribute

HTML onclick attribute: In this attribute will trigger when the event on the mosue click changes. And this event is similar to the oninput event. HTML onclick attribute This attribute will support all …

Read more

HTML onchange attribute

HTML onchange attribute event occurs if the browsers feel that the audio/video having to stop for buffering. It is similar to the oninput event attribute. But the difference is while …

Read more

HTML oncanplaythorugh attribute

HTML oncanplaythorugh attribute: The HTML oncanplaythorugh attribute event happens when the web browser evaluates it can play through the specified audio/video without having to stop for buffering. And the oncanplaythrough …

Read more

HTML oncanplay attribute

HTML oncanplay attribute defines that to execute the script when the browser starts playing the file. HTML oncanplay attribute In the attribute, it will be using  some of the elements …

Read more

HTML onblur attribute

HTML onblur attribute: The HTML onblur attribute will fire at that moment when the element loses focus. This attribute is mostly used in Form validation code. This attribute is the …

Read more

HTML onbeforeprint attribute

HTML onbeforeprint attribute: This attribute can be used when a page is about to be printed. And the alert message display before the print dialogue box appears. The onbeforeprint attribute is …

Read more

HTML onabort attribute

HTML onabort attribute describes the script to run, that if the loading media file aborts. And this situation in attribute occurs when a media file aborts not because of the error. …

Read more

HTML novalidate Attribute

HTML novalidate Attribute: The HTML novalidate attribute is defined as a Boolean attribute. It specifies that the form-data should not validate when submitted. HTML novalidate Attribute The HTML novalidate attribute …

Read more

HTML name Attribute

HTML name Attribute: The HTML name attribute is used to specify that the form-data should not be validated when submitting the form. It can be applied on <button>, <fieldset>, <form>, <iframe>, …

Read more

HTML muted Attribute

HTML muted Attribute: The HTML muted attribute is defined as the Boolean attribute. It specifies that the output of the video should be muted. HTML muted Attribute The HTML muted attribute …

Read more

HTML multiple Attribute

HTML multiple Attribute: The HTML multiple attribute is defined as the Boolean attribute. It specifies that the user is allowed to enter or select more than one value. HTML multiple …

Read more

HTML min Attribute

HTML min Attribute: The HTML min attribute defines the minimum value of an element. The min attribute can be applied to the <input> and <meter> elements. The value of the min …

Read more

HTML method Attribute

HTML method Attribute: The HTML method attribute used to specify the HTTP method used to send data while submitting the form. There are two kinds of HTTP Methods, which are GET …

Read more

HTML media Attribute

HTML media Attribute: This attribute defines what media the linked document is optimized for. The media attribute specifies that the target URL is designed for special devices. HTML media Attribute This …

Read more

HTML maxlength Attribute

HTML maxlength Attribute: The HTML maxlength attribute defines the maximum number of characters that are allowed for an element. HTML maxlength Attribute The HTML maxlength attribute can be applied on <input>, …

Read more

HTML max Attribute

HTML max Attribute: This attribute defines the maximum value of an element. When this attribute is used by the <progress> element it specifies how much work the task requires in total. …

Read more

HTML low Attribute

HTML low Attribute: The HTML low attribute defines the range where the gauge’s value is considered to be a low value. The value of the low attribute must be greater than …

Read more

HTML loop Attribute

HTML loop Attribute: The HTML loop attribute is defined as a Boolean attribute. It specifies that the audio will start over again every time it is finished. HTML loop Attribute The …

Read more

HTML list Attribute

HTML list Attribute: The HTML list attribute defines the <datalist> element which contains the pre-defined options for an <input> element. HTML list Attribute The HTML list attribute can be applied to …

Read more

HTML lang Attribute

HTML lang Attribute: This attribute defines the language of the content of the element. Some of the examples for languages are en for English, es for Spanish, etc. The lang attribute will …

Read more

HTML label Attribute

HTML label Attribute: The HTML label attribute is used to specify the type of form element a label is bound to. HTML label Attribute Attribute Values: It contains the value i.e …

Read more

HTML kind Attribute

HTML kind Attribute: The HTML kind attribute defines the kind of text track. HTML kind attribute This HTML kind attribute can be applied to the <track> element. Browser Support The HTML …

Read more

HTML ismap Attribute

HTML ismap Attribute: The attribute is defined as a Boolean attribute. And it also specifies that the image is part of a server-side image-map. While the user clicks on a server-side …

Read more

HTML id Attribute

HTML id Attribute: It can be defined as a unique id for an HTML element. And also used to identify a unique element and its content. It is used by …

Read more

HTML http-equiv Attribute

HTML http-equiv Attribute: This attribute is mostly used in simulating an HTTP response header. It also provides an HTTP header for the information/value of the content attribute. HTML http-equiv Attribute This attribute …

Read more

HTML hreflang Attribute

HTML hreflang Attribute: It can be defined as the language of the linked source. This attribute can be applied to <a>,<area>,<link> elements. This attribute is only used if the href …

Read more

HTML href Attribute

HTML href Attribute: It is used to specify the URL of the linked resource. This can be applied to <a> , <link>, <area>, <base> elements. When it is used with …

Read more

HTML high Attribute

HTML high Attribute: This attribute defines the range where the guages value is referred to as a high value. This attribute must be less than the max attribute value, and it …

Read more

HTML hidden Attribute

HTML hidden Attribute: This is used to define the visibility of elements. And also as a Boolean attribute. It specifies that an element is no longer relevant when the hidden attribute is …

Read more

HTML height Attribute

HTML height Attribute: The HTML height attribute defines the height of the element. It specifies the height in pixels. The <canvas>, <embed> and <video> tag are not supported in HTML4. While …

Read more

HTML headers Attribute

HTML headers Attribute: The HTML headers attribute defines one or more header cells a table cell is related to. HTML headers Attribute The HTML header attribute can be applied to <td> …

Read more

HTML formaction Attribute

HTML formaction Attribute: The HTML formaction attribute defines where to send the form-data when it is submitted. HTML formaction Attribute This attribute can be applied to <button>,<input> elements. Browser Support This …

Read more

HTML form Attribute

HTML form Attribute: This attribute defines one or more forms that the elements belong to. And the owner of the element will indicate the form. HTML form Attribute This attribute can be …

Read more

HTML for Attribute

HTML for Attribute: This attribute can be used with <label> and <output> elements. When it is used with <label> element it specifies which form element a label is bound to. HTML for …

Read more

HTML enctype Attribute

HTML enctype Attribute: This attribute defines how the form-data should be encoded when submitted to the server. This type of attribute can be used only if method = “POST”. Element: The …

Read more

HTML dropzone Attribute

HTML dropzone Attribute: This attribute defines whether the dragged data is copied, linked, moved when it is dropped into an element. It is new in HTML 5. HTML dropzone Attribute This attribute …

Read more

HTML draggable Attribute

HTML draggable Attribute: This defines whether an element is draggable or not. Links and images are by default draggable. The draggable attribute is often used in the drag and drop …

Read more

HTML download Attribute

HTML download Attribute: This attribute defines that the target will be downloaded when a user clicks on the hyperlink. It is used when the href attribute is set. While the name of …

Read more

HTML disabled Attribute

HTML disabled Attribute: This attribute is specified as a Boolean attribute. If the disabled attribute is present it means that the element must be disabled (or) not. The JavaScript could remove …

Read more

HTML dirname Attribute

HTML dirname Attribute: This attribute helps to enable the text direction of the given input and textarea field by submission of the form. It also comes with the extension of “.dir“. …

Read more

HTML dir Attribute

HTML dir Attribute: The HTML dir attribute defines the text direction of the content of the element. This can be applied to all HTML elements. HTML dir Attribute Syntax: <element dir …

Read more

HTML defer Attribute

HTML defer Attribute: This attribute specifies the Boolean attribute. If the defer attribute is present it specifies that the script is executed when the page had finished the parsing. HTML defer …

Read more

HTML default Attribute

HTML default Attribute: This attribute is defined as the boolean attribute. If the default attribute is present it specifies that the track is to be enabled if the user’s preferences do …

Read more

HTML datetime Attribute

HTML datetime Attribute: The HTML datetime attribute used to define the machine-readable date/time of the <time> element. The date-time is inserted in the format YYYY-MM-DDThh:mm:ssTZD. Attribute Values: This attribute contains single …

Read more

HTML data-* Attribute

HTML data-* Attribute: This attribute specifies the storage of custom data private to the page or application. The custom attributes allow you to add your own information to tags in HTML. …

Read more

HTML data Attribute

HTML data Attribute: The HTML data attribute defines the Uniform Resource Locator(URL) of the resource that is used by the object. HTML data Attribute The HTML data attribute can be …

Read more

HTML coords Attribute

HTML coords Attribute: This attribute defines the coordinates of an area in an image-map. This attribute is used together with the shape attribute to define the size, shape, and placement of an …

Read more

HTML controls Attribute

HTML controls Attribute: This attribute is defined as a boolean attribute. When the control attribute is present it should specify that audio or video controls should be displayed. The <video> and <audio> …

Read more

HTML content Attribute

HTML content Attribute: The HTML content attribute represents the value associated with the name attribute (or) htt-equiv. HTML content Attribute The HTML content attribute can be applied to the elements …

Read more

HTML colspan Attribute

HTML colspan Attribute:  This attribute specifies the number of columns a table cell should be spanned. It will allow a single table cell to span the width of more than …

Read more

HTML cols Attribute

HTML cols Attribute: The HTML cols attribute defines how many width average width characters should fit on a single line. The size of a textarea can also be set by the …

Read more

HTML color attribute

HTML color attribute: The HTML color attribute can be applied to an HTML element using CSS. Any user can choose the colors according to his comfort and apply on your webpage. …

Read more

HTML class attribute

HTML class attribute: It defines one (or) more class names for HTML element. While the class name can be used by CSS and JavaScript for performing certain tasks with a …

Read more

HTML cite attribute

HTML cite attribute: This attribute defines a URL document which explains the quote. And also why the text has been inserted or changed. While it supports different elements like <del>, <ins>, …

Read more

HTML checked attribute

HTML checked attribute: This attribute describes whether an element should be checked when the page loads. And the HTML checked attribute is of the Boolean attribute. HTML Checked attribute The …

Read more

HTML charset attribute

HTML charset attribute: This attribute mainly used for character encoding of an element if it was used by <meta> element. While it is also used in the external script if it …

Read more

HTML border attribute

HTML border attribute: The HTML border attribute is used for setting the box radius, table radius and more according to user requirement. HTML border attribute The HTML border attribute can be used …

Read more

HTML bgcolor attribute

HTML bgcolor attribute: The HTML bgcolor attribute is used for setting the background color of an HTML page. There are about totally 256 colors in the HTML colors. HTML bgcolor attribute …

Read more

HTML autoplay attribute

HTML autoplay attribute: The HTML autoplay attribute helps us to play the audio/video automatically without having any intervals of time. While this attribute has elements like audio, video. HTML autoplay attribute …

Read more

HTML autofocus attribute

HTML autofocus attribute: This attribute defines that the element should focus on when the pages load automatically. And this attribute is of boolean type. And this attribute has the elements like …

Read more

HTML autocomplete attribute

HTML autocomplete attribute: It defines that a form/ input files having the autocomplete on/off. And this attribute helps the browser for predicting the values. i.e. If a user starts typing in …

Read more

HTML async attribute

HTML async attribute: This attribute can be defined as a “Boolean attribute”. It defines that the script will be executed asynchronously as soon as it is available. While this async attribute …

Read more

HTML alt attribute

HTML alt attribute: This attribute will help us to provide the alternative of the image because if the user faces any issues regarding loading, error or some other issue for the …

Read more

HTML action attribute

HTML action attribute: This attribute is used to define the place of form data has to be sent after filling and submitting the form. And it can be used at <form> …

Read more

HTML accesskey attribute

HTML accesskey attribute: The HTML accesskey attribute can be used as a shortcut to activate specific elements. And this accesskey attribute is a browser dependent. So, that it will be varying …

Read more

HTML accept-charset attribute

HTML accept-charset attribute: It defines the character encoding which is used for form submission. While the default value of the accept-charset attribute is “UNKNOWN” string. And it indicates that encoding …

Read more

HTML accept attribute

HTML accept attribute: In this attribute describes the types of files that the server accepts. And these files can be submitted through file uploading. While it can be used with …

Read more