Skip to main content

12th HSC for 2020 and 2021 batch HTML theory .part 1

 What is HTML ?

▪ The HTML is used to create world wide web document .
▪ Using this language user can creat web pages which can view in web browser.
▪ HTML is not a programming language in real sense .
▪ It is set of code that is used to creat document then it can be publish on world wide web .

Advantages of HTML
• No special software is needed .
• Easy to learn and also for implementation .
• Contain a powerful formatting facilities.
• HTML pages updated easily without changing whole document.
• Finding error is easy in HTML.
• It will not cost anything for its use .
• There is no expensive licenses to buy or to upgrade .

Disadvantages of HTML
[ July 2017,06,09,mar-14]
 HTML is not a programming language in real sense.
Any simple calculation can no be done in HTML .
It can not be use to print even dates.
Interactive web pages can not build in HTML.
The web pages can be develop in HTML but can not behave like an application.

What are the tags ?
Tag is a simple unit of markup language .
It is a set of sysmbols defined in HTML they have a specific meaning .
Tags are nothing but instructionthat are written directly into text edition.
In HTML every tag is started with < sign followed by keyboard and always end with > sing.
That symbols together called as angle brakets.
Ex :<html> ,<H1>,<body>.

Example
<I>  is an italic tag the text written using this tag and also end with  </I>  displayed in italic mode

   <I> html </I>.

So html will display like ............->html 

Tag can be nested within each other. Lilke <b><I>hello</I></b>

Comments

Post a Comment

Popular posts from this blog

Free notes of all naming reactions .(handwritten notes jee, neet, mht-cet)

All naming reactions  (Handwritten notes.)                   organic chemistry naming reactions.

Important MCQ and imp programs of html and c++.

  Some important MCQ . Ans. :- a)-i) , b)- i) , c)- iii) , d)- iii)                        Ans. :- a)- ii) , b)- iii) , c) - iii) , d)- ii)                         Ans.:- a)- ii) , b) - i), c) - iii) , d) - ii)                        And. :- a)- iii) , b)- ii) , c)- iii) , d) - iii)                       Ans. :- a) - ii) , b) - i), c)- iii) , d) - iii)                      Some important previous year questions of programming. 1) 2) 3) 4)

Free notes of C++ language theory ,12 th HSC (part 1)

 What is c++ ? What is the advantages of c++ ? C++ is an object oriented programming language Initially c++ was name as “c with classes”. C++ was developed by Bjarne stroustrup at & T Bell Laboratories , usa , in the early eighties . Advantages of c++ over c are : (1) c++ is an incremented version of of c . It is sperset of c. almost all c programme are also run in c++ compiler . (2) The important faculties added in c++ are classes , function overloading , operator overloading . (3) C++ allow user to create abstract data type , to inherit properties from existing data type . (4) c++ supports polymorphism . (5) Any real life application systems such as editor , compiler , database , communication system can be built by c++. (6) Object oriented libraries can be built by c++. (7) c++ programs can be easily implemented , maintained and expanded. What do you mean by object based programming language and object oriented programming language? State the relationship b...