01_Unleashing the Power of JavaScriptAbout JavaScript JavaScript is often abbreviated as JS. It was created by Brendan Eich in 1995. JavaScript is a core technology of the World Wide Web, along with HTML and CSS. It is a versatile language that can be used for both front-end and bac...Oct 2, 2023·5 min read
Inline and block elementsBlock Elements A block-level element always begins on a new line, and browsers add a margin (a space) before and after the element by default. A block-level element always occupies the entire available width (stretches out to the left and right as fa...Feb 11, 2023·1 min read
HTML EntitiesSome characters are reserved in HTML. If we use the less than (<) or greater than (>) signs in our text, the browser might mix them with tags. Character entities are used to display reserved characters in HTML. A character entity looks like this: &en...Feb 10, 2023·1 min read
Basics of HTMLHTML stands for Hypertext Markup Language. It is the standard markup language for creating Web pages. It defines the structure or outline of the webpage content. Websites are displayed on browsers, and HTML elements guide the browser on how to displa...Feb 10, 2023·2 min read
Web browsers explained...!!A web browser takes us anywhere on the internet, letting us see text, images, and video from anywhere in the world. How does a web browser work? A web browser retrieves information from other parts of the web and displays it on our desktop or mobile ...Feb 3, 2023·2 min read
How does the Internet work?The Internet is an extensive network of computers that communicate together The Internet is a way to connect computers altogether and ensure that, whatever happens, they find a way to stay connected. Simple Network When two computers need to communic...Feb 2, 2023·3 min read
Exception handling in JavaAn exception is an unwanted or unexpected event that occurs during the execution of the program that disrupts the normal flow. class Test { public static void main(String[] args) { System.out.println("1"); System.out.println("...Jan 20, 2023·2 min read