Center HTML

HTML <center> Tag The HTML <center> tag is not supported in HTML5. It is a block-level element, and thus both block-level and inline contents are included within it. It displays the content in the middle of the page. After being deprecated in HTML 4, it has been obsolete in HTML5. The CSS property text-align: center; … Read more

Canvas HTML

HTML <canvas> Tag To draw graphics on a web page, the HTML 5 <canvas> tag is used which is a low-level, procedural model. Using a scripting language like JavaScript, it draws graphics and provides HTML with a bitmapped surface to work with. It acts as a container for graphics. A scripting language is needed to … Read more

Button HTML

HTML <button> Tag To create a clickable button, the <button> tag is used. It is usually required within an HTML form. Contents like text or images can be placed within the <button> tag. The “type” attribute needs to be specified for a <button> tag because, for the <button> tag, different browsers can have different default … Read more

BR HTML

HTML <br> Tag To break a line in a paragraph, the HTML <br> tag is used. It is especially useful for poems or addresses where the line break is necessary. Being an empty tag, it does not need a closing tag. The HTML <br> tag is not meant to be used for the margin between … Read more

Body HTML

HTML <body> Tag The main content of an HTML document is defined inside the HTML <body> tag. Only the content inside the HTML <body> tag is meant to be displayed on the browser. The content can vary from simple text to paragraphs, headings, images, tables, links, videos, etc. It is placed after the <head> tag … Read more

Blockquote HTML

HTML <blockquote> Tag To specify a block of text that is quoted from another source, the HTML <blockquote> tag is used. On the browser, it displays the content as indented text. For short or inline quotes, the HTML <q> tag can be used instead of the HTML <blockquote> tag. Syntax: <blockquote>content</blockquote> Example: <!DOCTYPE html> <html> … Read more

BIG HTML

HTML <big> Tag The HTML <big> tag is not supported in HTML5. To increase the text font size, the HTML <big> tag was used. It always sets the font size one level bigger (small to medium, medium to large, etc.) than the base font size of the document or the surrounding text size. Now, CSS … Read more

BDO HTML

HTML <bdo> Tag The BiDirectional Override is what the HTML <bdo> tag stands for. As the name itself suggests, it overrides the current or the default text direction, thus setting the direction of content within it. On the browser, the content then renders from left to right or right to left. For languages like Arabic … Read more

BDI HTML

HTML <bdi> Tag: The Bidirectional Isolate Element is represented by the HTML <bdi> tag. To instruct the browser to isolate the specified text from its surrounding content, especially when it is required to embed the user-generated content with an unknown directionality, this tag is used. It was introduced in HTML 5. For languages like Arabic … Read more