Skip to main content

Posts

Showing posts from September, 2022

HTML formatting tags

Formatting tags in HTML. There are different types of formatting tags in HTML and these tags are.~ <b> <strong> <i> <em> <mark> <small> <del> <ins> <sub> <sup> HTML formatting tags specify how the text can appear in the browser like the text should appear bold, italic, small, large, etc. Now let’s understand each tag one by one. Firstly we will see a bold and strong tag. let’s understood the bold tag. Anything that appears within the <b>…</b> tag is displayed in bold. The HTML <b> tag defines bold text, without any extra importance. Then we have the strong tag. The HTML strong <strong> tag defines the text with strong importance. The content inside is typically displayed in bold. Then we have the HTML italic and emphasis elements. Anything that appears within <i>….</i> element is displayed in italics. The HTML  <i>the the  element defines the specific part of the ...

Difference Between the Java and Javascript

JAVA is a programming language invented by James Gosling and developed by SUN MICROSYSTEM. It was first released in 1995. It is one of the most popular OOPS languages. JAVASCRIPT is developed by Brenden Eich at Netscape. He created this programming language in 1990 and named it LiveScript initially. Later on, it was renamed JavaScript It is a web-based object-oriented scripting language used to add motion or dynamic content to our website. Both languages are object-oriented. Java applications and programs run in Java Virtual Machine(JVM). Also, you need to install JDK and JRF JavaScript applications run on a web browser and there is no need for any initial setup. Java programs are compiled and interpreted as it is a programming language. JavaScript is only interpreted as it is a scripting language or plain text code.