Block Level and Inline Element Web Development

HTML – Block Level and Inline Element

  • December 23, 2020
  • 0 Comments

You have seen many of the elements that can be used to mark up text; it is important to make an observation about all the elements that live inside the <body> element because each one can fall into one of two categories; Block Level Element.  Inline Element.  Block Level Element Block-level elements appear on the […]

Code Element to Highlight Codes Web Development

HTML – Code Element to Highlight Codes

  • December 23, 2020
  • 0 Comments

HTML <CODE> Element If your pages include any programming code, scripting language code. Any codes on the webpage will be placed inside the <code> element. The code element has ending tag </code>. The <code> element is presented in a monospaced font, like the code in most of the programming language books. HTML Code [With C […]

HR Tag and Its Attributes With Syntax Web Development

HTML – HR Tag and Its Attributes With Syntax

  • December 23, 2020
  • 0 Comments

This <hr> is the tag which draws a horizontal line across whole page, whenever it is specified it will draw the line. The <hr> tag is singular tag, it means the <hr> tag does not contain closing tag. <hr> tag defined as, <h3>Heading 3.1</h3><p> Hello World ! Learn HTML</p><hr><h3>Heading 3.2</h3><hr><p> Hello WOrld ! How are […]

EM Tag, INS and Strike Tag Web Development

HTML – EM Tag, INS and Strike Tag

  • December 23, 2020
  • 0 Comments

HTML em Tag The html em tag is used to add emphasis to a word or phrase. The emphasized text is rendered in italics in most browsers. Previously some browsers won’t display the italics while using the em tag. The emphasis tag was meant to provide emphasis to the text. It is also widely used […]