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 […]

Strong Tag and Comment Tag Web Development

HTML – Strong Tag and Comment Tag

  • December 22, 2020
  • 0 Comments

HTML <strong> Tag The strong tag works like as <b> [Bold] tag.    The strong tag indicates the text strong or important. If any of your content is important,  then you can use the strong tag to indicate that text on your web page. It is pair tag, means it has start and end tag. <strong> […]

SUB (Subscript) and SUP (Superscript) Tags Web Development

HTML – Subscript in HTML and SUP (Superscript)

  • December 22, 2020
  • 0 Comments

Subscript in HTML The tag <sub> is defined as subscript in html.  It is widely used to place subscripted text on web pages. It is a paired tag. It has a start tag <sub> and closing tag </sub> Subscript text appears half a character below the normal line and is sometimes rendered in a smaller […]

Encapsulation in Java Programming

Java – Encapsulation in Java

  • December 22, 2020
  • 0 Comments

Encapsulation is a protective mechanism by which members of a class (method and variables) are prevented from being accessed by members of other class.   The best example of encapsulation is the class because that binds its variables and methods and hides their complexity from other class.   In a class, the general variables and […]

For Each Loop for Associative Array Programming

Java – For Each Loop for Associative Array

  • December 22, 2020
  • 0 Comments

The for-each loop is specially used to handle elements of a collection or mostly i is used to handling associative array. A collection is represented by a group of elements or objects. The list is an example of the collection since it stores a group of objects. The for-each loop repeatedly executes a group of […]

Use of Final Keyword in Java Programming

Java – Use of Final Keyword in Java

  • December 22, 2020
  • 0 Comments

If you declared Java variable is final, then that variable cannot re-declared that declaration for the single time. Means that variable can be initialized only for a single time.  If Java classes are declared final, then those Java classes cannot be further extended. It means you cannot inherit the data from the superclass. The final […]

Extends Keyword for Inheritance Programming

Java – Extends Keyword for Inheritance

  • December 22, 2020
  • 0 Comments

In inheritance, the base class inherits the superclass. To inherit a class in Java extends keyword is used in the subclass definition to inherit a superclass. Create two Java class first: MyInfo, second is FullInfo extends from MyInfo. This means FullInfo will inherit information from MyInfo class. Inheritance is used to do work faster. Here […]