-
HTML Quotes
HTML quotes are used to put a short quotation on your website. To do so, you need to use HTML q tag and HTML blockquote tag. HTML q tag HTML q tag is used to put small quotation. To do so, write your text within <q>………….</q> tag. Output: Great quote on love and life. Dr. Seuss…
-
HTML Progress Tag
HTML <progress> tag is used to display the progress of a task. It provides an easy way for web developers to create progress bar on the website. It is mostly used to show the progress of a file uploading on the web page. The HTML progress tag is new in HTML5 so you must use new…
-
HTML pre tag
The HTML <pre> tag is used to specify pre formatted texts. Texts within <pre>…….</pre> tag is displayed in a fixed-width font. Usually it is displayed in Courier font. It maintains both space and line break. It is widely used to display language examples e.g. Java, C#, C, C++ etc because it displays the code as it is typed.…
-
HTML <picture> tag
HTML <picture> tag is used in responsive web designing where we need to load the different images based on their viewport, height, width, orientation, and pixel density. The <picture> tag contains one or more <source> elements and one <img> elements. According to the viewport, the matching image will be loaded from different <source> tag, and…
-
HTML <param> tag
HTML <param> tag is used to pass the parameters to the object that has been embedded using <object> element. We can use more than one <param> tag within an <object> element in any order, but each tag must contain name and value attribute and should be placed at the start of the content. The <param>…
-
HTML Paragraph
HTML paragraph or HTML p tag is used to define a paragraph in a webpage. Let’s take a simple example to see how it work. It is a notable point that a browser itself add an empty line before and after a paragraph. An HTML <p> tag indicates starting of new paragraph. See this example:…
-
HTML <output> tag
HTML <output> tag is used to display the result of some calculation (performed by JavaScript) or the outcome of a user action (such as Input data into a form element). The <output> tag is a newly added tag and was introduced in HTML5. Syntax Following are some specifications about the HTML <output> tag Display Inline…
-
HTML <option> tag
HTML <option> tag is used to define options in a dropdown list within <select> or <datalist> element. A dropdown list must have at least one <option> element. The related <option> of a dropdown list can be grouped using <optgroup> element which helps to understand a large list. Syntax: Following are some specifications about the HTML…
-
HTML <option> tag
HTML <option> tag is used to define options in a dropdown list within <select> or <datalist> element. A dropdown list must have at least one <option> element. The related <option> of a dropdown list can be grouped using <optgroup> element which helps to understand a large list. Syntax: Following are some specifications about the HTML…
-
HTML <optgroup> tag
HTML <optgroup> tag is used to group related <options> in a drop down list within <select> element. Using <optgroup> tag with <select> makes easier to access the dropdown list especially if list has large number of options. Syntax: Following are some specifications about the HTML <optgroup> tag Display Inline Start tag/End tag Both Start and…
