Programming World Solutions
Learn C,C++,JAVA,Android,HTML,PHP and much more here…..
Sunday, September 25, 2016
Friday, May 6, 2016
Introduction to HTML
HTML:
HTML stands for Hyper Text Markup Language.Hypertext means links within and among web documents.It connects one document to another.HTML is based on SGML( Standardized General Markup Language). Nowadays,HTML has evolved into presentation language.HTML standard are developed under the authority of the World Wide Web Consortium(W3C). HTML has been headed by Tim Lee. HTML language is understand by browser. It contains a set of codes that can be incorporated in text to provide linking information. HTML is embedded with TAGS in a web pages. We can create HTML documents using notepad in Windows and Text Edit in (MAC OS). We can also use HTML Text Editors. After finishing of HTML documents, we save it in extension as ".htm" or ".html". Some of HTML Text Editors are Dreamweaver,Front Page,Go Live,etc.
Introduction to Constructor and their types
Constructor:
Constructor are the member function that are executed automatically. When an object is created, no explicit call is necessary to involve them through the dot operator.It is called constructor because it construct the value of data member of the class. Constructor are mainly used for data initialization.
Subscribe to:
Comments (Atom)
Popular Posts
-
C++ Programming Language: C++ is an object oriented programming language. It mainly emphasis on object rather than procedure. C++ ove...
-
HTML: HTML stands for Hyper Text Markup Language.Hypertext means links within and among web documents.It connects one document to another...
-
Looping (or Iteration): Repeating some portion of the program either for a fixed number of times or as long as the condition is satisfied ...
-
Accessing private member function of the class: It is normal way to declare all the data items in a private section and all the function ...