Tuesday, April 5, 2016

How to create webpage in HTML

While creating a webpage you need two things, first is the text editor like notepad or any other text editor in which you are writing HTML code and second you need a browser to view or test webpage.

Webpage creation can be goes through following steps

Step 1: Launch (open) any text editor 

Step 2: Type required HTML code in editor
Suppose I want to create a webpage which display "Welcome to HTML..!!" 

<DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>WELCOME</TITLE>
</HEAD>
<BODY>
Welcome To HTML..!!
</BODY>
</HTML>

Sample HTML code in Notepad
Typing HTML code in Notepad file

Step 3: After complete of code typing save file with filename followed with  '.html' or '.htm' extension

Saving HTML Code with file name as welcome and followed with .html extension
Saving HTML code with file name as welcome followed with .html extension

Step 4: Goto the location where you save html document/file, right click on html file and open with any web browser like firefox, internet explorer, google chrome, opera, etc.

Step 5: Observe output on browsers window.

output of webpage on browsers window
HTML code output on browsers window

Thursday, March 24, 2016

Difference between Script and Language

ScriptProgramming Language
Script is light weight Program Programming language code (program) is Heavy weight program
Script is easy to understand and installProgramming language having trouble to understand
Script is simple to implementProgramming language code is complex to implement
Header files not required for scriptHeader file are essential part of programming language
No library required for scriptLibrary are mandatory for programming language
Script are interpreter basedLanguages are interpreter and compiler based
Scripts are used at client sidePrograms are used at client as well as Server side
Variables can be dynamically declared (implicit)Variables should be statically declared (explicit)
Script are not rule basedPrograms are completely rule based
Script having poor graphics implementationsPrograms having powerful graphics implementations
Ex. Live Script, JavaScript, VBscript, PERL Script, Python Script. Ex. FORTRAN, COBOL, PASCAL, BASIC, ALGOL, CPL, BCPL, C, C++, java, C#


Sunday, March 20, 2016

Introduction To HTML

HTML stands for Hyper Text Markup Language is the markup language used on World Wide Web to write web pages.

A document created in HTML language is called as web pages.

Hypertext means text with links. The way in which web pages (often called HTML documents) are linked together is called as hypertext.

If a text is hypertext which means that the text available on page contains link to another page or document.

Markup Language which means you use HTML to simply "mark up" a text document with tags that tell a Web browser how to structure it to display.

Hypertext concept initialize in 1989 with the name of GML (Generalized Markup Language). It was developed by Sir Timothy John Berners-Lee (Father of World Wide Web).

In the year of 1994 sir Tim Berners Lee founded W3C (World Wide Web Consortium). W3C is the organization which monitors world wide web standards.