-
HTML Form
An HTML form is a section of a document which contains controls such as text fields, password fields, checkboxes, radio buttons, submit button, menus etc. An HTML form facilitates the user to enter data that is to be sent to the server for processing such as name, email address, password, phone number, etc. . Why use HTML Form HTML…
-
HTML Footer Tag
HTML <footer> tag is used to define a footer for a document or a section. It is generally used in the last of the section (bottom of the page). The footer tag is included in HTML5. HTML <footer> tag contains information about its containing elements for example: If you want to put information like address, e-mail…
-
HTML <font> tag (Not Supported in HTML5)
HTML <font> tag is used to define the font style for the text contained within it. It defines the font size, color, and face or the text in an HTML document. Syntax Following are some specifications about the HTML <font> tag Display Inline Start tag/End tag Both Start and End tag Usage Font Style Example…
-
HTML figure tag
HTML <figure> tag is used to mark up a photo in the document on a web page. As we know image tag is already available in HTML to display the pictures on web pages. But HTML 5 <figure> tag is used to handle the group of diagrams, photos, code listing etc. with some embedded content. You…
-
HTML figcaption tag
The <figcaption> element is used to provide a caption to an image. It is an optional tag and can appear before or after the content within the <figure> tag. Only one <figcaption> element can be nested within a <figure> tag although the <figure> element itself may contain multiple other elements like <img> or <code>. The…
-
HTML <fieldset> tag
HTML <fieldset> tag is used to group the logically related fields/labels contained within an HTML form. The use of this tag is optional while creating an HTML form but using <filedset>, it is easy to understand the purpose of grouped elements of form. The <legend> tag is used with the <fieldset> element as a first…
-
HTML <embed> tag
HTML <embed> tag is used to embed an external document in an HTML file which can be a third party application, multimedia, plugin(interactive content), etc. This element is new in HTML5. Syntax: Following are some specifications about the HTML <embed> tag Display block Start tag/End tag Both Start and End tag Usage Embed third-party applications…
-
HTML <em> tag
HTML <em> tag is used to stress emphasis the particular text within a sentence or phrase. It gives semantic meaning to the text contained within it and renders in the italic form on the browser. Syntax: Following are some specifications about the HTML <em> tag Display Inline Start tag/End tag Both Start and End tag…
-
HTML Div Tag
The HTML <div> tag is used to group the large section of HTML elements together. We know that every tag has a specific purpose e.g. p tag is used to specify paragraph, <h1> to <h6> tag are used to specify headings but the <div> tag is just like a container unit which is used to encapsulate other page…
-
HTML <dir> tag (Not Supported in HTML5)
HTML <dir> tag was used as a container for the list of files/folders or content of the directory. The <dir> element is used with the <li> tags, and list of directories renders in bullets by default. Syntax: Following are some specifications about the HTML <dir> tag Display Block Start tag/End tag Both Start and End…
