-
HTML Image
HTML img tag is used to display image on the web page. HTML img tag is an empty tag that contains attributes only, closing tags are not used in HTML image element. Let’s see an example of HTML image. Output: Attributes of HTML img tag The src and alt are important attributes of HTML img tag.…
-
HTML iframes
HTML Iframe is used to display a nested webpage (a webpage within a webpage). The HTML <iframe> tag defines an inline frame, hence it is also called as an Inline frame. An HTML iframe embeds another document within the current HTML document in the rectangular region. The webpage content and iframe contents can interact with…
-
HTML <i> tag
HTML <i> tag is used to represent a part of text in a different voice from the surrounding text. The content within <i> tag usually renders in italic type on the browser. It can be useful to represent some technical terms, phrase, fictional character thoughts, etc. Syntax Following are some specifications about the HTML <i>…
-
HTML <html> tag
The <html> tag represents root of an HTML document hence also called as root element. It is a container of all elements (except <!Doctype> ) such as <body>, <head> and each element which appears in an HTML document. It tells the browser that the document is an HTML document. Before the <html> tag we can…
-
HTML hr tag
HTML <hr> tag is used to specify a paragraph-level thematic break in HTML document. It is used when you abruptly change your topic in your HTML document. It draw a horizontal line between them. It is also called a Horizontal Rule in HTML. HTML hr tag Output: HTML HTML is a language for describing web…
-
HTML Header Tag
HTML <header> tag is used as a container of introductory content or navigation links. Generally a <header> element contains one or more heading elements, logo or icons or author’s information. You can use several <header> elements in one document, but a <header> element cannot be placed within a <footer>, <address> or another <header> element. HTML Header…
-
HTML Head
The HTML <head> element is used as a container for metadata (data about data). It is used between <html> tag and <body> tag. The head of an HTML document is a part whose content is not displayed in the browser on page loading. It just contains metadata about the HTML document which specifies data about…
-
HTML Heading
A HTML heading or HTML h tag can be defined as a title or a subtitle which you want to display on the webpage. When you place the text within the heading tags <h1>………</h1>, it is displayed on the browser in the bold format and size of the text depends on the number of heading.…
-
HTML <frameset> tag (Not supported in HTML5)
HTML <frameset> tag is used to contain the group of frames which can be controlled and styled as a unit. The <frameset> element also specifies the number of rows and columns in the frameset, and how much space they will occupy in a frame. Syntax: Following are some specifications about the HTML <frameset> tag Display…
-
HTML <frame> tag (Not supported in HTML5)
HTML <frame> tag define the particular area within an HTML file where another HTML web page can be displayed. A <frame> tag is used with <frameset>, and it divides a webpage into multiple sections or frames, and each frame can contain different web pages. Syntax: Following are some specifications about the HTML <frame> tag Display…
