Header HTML

HTML <header> Tag To act as a container of introductory content or navigation links, the HTML <header> tag is used. It can contain multiple heading elements, logos or icons, or author’s information. There can be more than one <header> tag in an HTML document. It is however restricted to placing an HTML <header> tag within … Read more

Frame HTML

HTML <frame> Tag The HTML <frame> Tag is not supported in HTML5. It was used to specify an area in an HTML file to display another HTML web page within it. A web page is thus divided into multiple sections or frames. Different web pages are present in each frame. It is used with the … Read more

Form HTML

HTML <form> Tag The HTML <form> element is used to specify an HTML form. It is a container that provides a document section to take input from the site visitors, along with the various interactive controls for submitting information to the web server. Syntax: <form> //Form elements </form> HTML Form: A section of a document … Read more

Footer HTML

HTML <footer> Tag To specify a footer for a document or a section on a web page the HTML <footer> tag is used. It is usually used at the bottom of the page and was introduced in HTML5. There can be more than one footer element in a document. It contains information related to: authorship … Read more

Font HTML

HTML <font> Tag The HTML <font> tag is not supported in HTML5. It was used to specify the font style which includes the font size, color, and face of the specified content. CSS properties are now used, instead of the HTML <font> tag. Syntax: <font size=” ” color=” ” face=” “>Content</font> Example: <!DOCTYPE html> <html> … Read more

Figure HTML

HTML <figure> Tag To mark up an image on a web page and to handle the group of diagrams, photos, code listing, etc. with some embedded content, the HTML <figure> tag is used. It was introduced in HTML5. The content of this tag is related to the main flow. However, the position of the HTML … Read more

Embed HTML

HTML <embed> Tag To embed an external document in an HTML file, the HTML <embed> tag is used. The external document can be a third-party application, multimedia, plugin, etc. It was introduced in HTML5. Other than the HTML <embed> tg the HTML <audio> and <video> tags are also used to embed multimedia in HTML documents. … Read more