HR HTML

HTML <hr> Tag In an HTML document, we can specify a paragraph-level thematic break using the HTML <hr> tag. The <hr> tag represents a Horizontal Rule in HTML. When a topic is changed abruptly in an HTML document, we can use the HTML <hr> tag to draw a horizontal line between the topics. Example 1: … Read more

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

Head HTML

HTML <head> Tag The HTML <head> tag acts as a container for metadata. Metadata can also be understood as data about data or data about the HTML document that is not displayed. The HTML <head> tag is placed between the <html> and <body> tag. The <head> tag is a container for tags like <title>, <style>, … 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