HTML Html stands for HyperText Markup Language. The First version HTML was written by Tim Berners Lee in 1993. HTML TAGS:- HTML tags tells a web browser how to format text. You can use tags to format italics, line breaks, objects, bullet points, and more. Some important HTML tags are as follows:- Paragraph Tag:- When we want to give headings in our html document text then we use heading tag. There are six levels of heading tags in html.These are:- Syntax:- <p>.........<\p> To write a paragraph in html document we use paragraph tag. It is a paired tag which means it contains both opening and closing tags. We can write our text inside <p>...</p> tag. Heading Tag:- To write a heading in our HTML document we use heading tag of html.The syntax of which is described below:- Syntax:- There are 6 levels of heading in html document i.e. <h1>.........<\h1> <h2>.........<\h2> <h3>.........<\h3> <h4>.........<\h4> <h5&
OBJECT ORIENTED PROGRAMMING Meaning:- Object-Oriented Programming (OOP) is a programming concept that uses classes and objects. It’s utilized to break down a software program into reusable code blueprints (called classes) that you may use to build specific instances of Object-oriented programming languages include JavaScript, C++, Java, and Python, to name a few. Features of OOPs:- The various features of Object Oriented Programming (OOPs) are as follows:- Fig: Features of OOPs Object An object is one of the important features of Object-oriented programming . An object represents a real-life entity which is an instance of a class. Objects have mainly two characteristics of state and behavior . The state is nothing but an identity of the object(data) Behavior describes the function(method) of the object. Class A class is another feature of object oriented programming. A class can be defined as a blueprint from which we can create multiple objects. For Example:- Any program