Skip to main content

ABOUT HTML MARKUP LANGUAGE

STRUCTURE OF HTML DOCUMENT: 
HTML document are structured into two parts:
  1. HEAD
  2. BODY
  • HEAD: Head contain information about the document that is not displayed with the document such as TITLE.
  • BODY: contains the text of the body that is material to be displayed with the document.
 


      <HTML>
               <HEAD>
                   <TITLE>                         
                            -------------
                             --------------
                   </TITLE>
               </HEAD> 
           <BODY>
                       -----------------
                       -----------------
                       ----------------
            </BODY>
      </HTML>
                 

 
NOTE: Elements allowed inside the HEAD such as TITLE, are not allowed inside the BODY, and vice versa.

EXTENSION OF HTML DOCUMENTS:
Extension: is the part after the dot in the filename.

HTML Files are indentified by names such as abc.html where .html extension indicates an HTML document. Four letter extensions are common. Generally the extension is truncated(reduced) to three letters that is becomes .htmlor .htm.

CREATING A HTML PROGRAM:
To creat an HTML document follow these steps:
  1. Open Notepad by clicking on Start>Programs>Accessories>Notepad.
  2. The Notepad Window will appear. Type the HTML code in the Notepad.
  3. Click on File>Save menu option. The save as dialog box will appear. Select the folder to save the file.Give the name in the file name text box with extensions .html or .htm.
  4. Click on the Save button.

VIEWING A HTML PROGRAM:
To view an HTML File, we need only the web browser. To veiw the web page follow these steps:
  1. Click on Start>Programs menu and choose Internet Explorer option. The Internet Explorer Window will appear.
  2. Click on File>open menu option. The open dialog box will appear. Click on Browse button and diaglog box will appear.
  3. Choose the path where you have stored the HTML document and after selecting your file. Click on Open button and Click Ok on Open dialog box.
  4. Your web page will be displayed on the Web Browser.
HTML Stands for Hypertext Markup Language
  • Hypertext: Text used to link a Web Page.
  • Markup: It means highlighting text either by underlining or displaying it in different colors or both.
  • Language: It refers to the way of communication between webpages , which has its own syntax and rules. 

HTML is a Language which is used for describing Web Pages. HTML uses Markup Tags to describe Web Pages.


  • HTML is a Markup Language.
  • Markup Language is a set of markup Tags.
  • Markup Tags also called HTML Tags.
  • HTML is not a Programming Language.
  • Markup Language designed for the presentation of text.
  • HTML is about Displaying Data.
  • HTML is not a Case Sensitive Language means uppercase and lowercase letters both have same meaning.
  • HTML tags are predefine.

 HTML Documents known as Web Pages. HTML Documents consist of
  1. Simple text (Plain Text) and 
  2. Markup Tags ( also known as HTML Tags).

HTML FILE:
  • WWW(World Wide Web) is Noting but a Vast Collection of HTML Files.
  • HTML Files simply Text Files (including HTML Tags) that can be easily read and understood by Human eyes. 
  • Web Browsers interpret HTML Files in order to Display Web Pages. This is the main Function of WebBrowser
  • Whenever you use a Browser to veiw Page on World Wide Web, the Browser had converted that Web Page from an HTML File.

VERSIONS:
  • The First Version was HTML 2.0 . It includes elements like Bold, italics etc. It did not support Tables or ALIGN attributes.

  • HTML3 was developed in 1995.
  • HTML 3.2 was next Offical Version support for TABLES, IMAGES , HEADING and other elements that is ALIGN attributes etc. Missing some of the Netscape/Microsoft extensions such as FRAMES , ENBED , APPLET.
  • HTML4.1 is Current Official Standard Version. It supports some extra Features that is Cascaded Style sheets(CSS) ,extra TABLES, FORM and Javascript.

CHARACTERSTICS:
  1. It is easy to understand and can be easily modified.
  2. It provides a flexible way to design the webpage alon with the text.
  3. HTML documents can be displayed on any platform such as UNIX etc.
  4. Effective Presentation can be made with all formatting effects.
  5. Videos,Graphics,Sound can also be used to give attractive look to the Web Pages.

Comments

Popular posts from this blog

IP ADDRESS CLASSES

IP address classes Class 1 st  Octet Decimal Range 1 st  Octet High Order Bits Network/Host ID (N=Network, H=Host) Default Subnet Mask Number of Networks Hosts per Network (Usable Addresses) A 1 – 126* 0 N.H.H.H 255.0.0.0 126 (2 7  – 2) 16,777,214 (2 24  – 2) B 128 – 191 10 N.N.H.H 255.255.0.0 16,382 (2 14  – 2) 65,534 (2 16  – 2) C 192 – 223 110 N.N.N.H 255.255.255.0 2,097,150 (2 21 – 2) 254 (2 8  – 2) D 224 – 239 1110 Reserved for Multicasting E 240 – 254 1111 Experimental; used for research Note:  Class A addresses 127.0.0.0 to 127.255.255.255 cannot be used and is reserved for loopback and diagnostic functions. Private IP Addresses Class Private Networks Subnet Mask Addr...

UNIX/LINUX COMMAND

Unix / Linux Command cat  --- for creating and displaying short files chmod  --- change permissions cd  --- change directory cp  --- for copying files date  --- display date echo  --- echo argument ftp  --- connect to a remote machine to download or upload files grep  --- search file head  --- display first part of file ls  --- see what files you have lpr  --- standard print command (see also  print  ) more  --- use to read files mkdir  --- create directory mv  --- for moving and renaming files ncftp  --- especially good for downloading files via anonymous  ftp . print  --- custom print command (see also  lpr  ) pwd  --- find out what directory you are in rm  --- remove a file rmdir  --- remove directory rsh  --- remote shell setenv  --- set an environment variable sort  --- sort file tail  --- display last part of file ta...

COMPARISON AMONG OS:

Operating systems are generally not hardware dependent, but the hardware configurations required to use them can vary. Based on their features, these operating systems can be compared in the following ways: MS-DOS Microsoft Windows UNIX and Sun Solaris Linux Novell NetWare Apple Macintosh MS-DOS The MS-DOS operating system is a Microsoft product designed for IBM-compatible computers. The first version of DOS, MS-DOS v1.0 released in 1981, was a simplistic version of the operating system. From then onwards, various updated and sophisticated versions of DOS have been released. MS-DOS is a popular CUI-based operating system. FEATURES: It is a 16-bit operating system, which means that it can send or receive 16 bits of information to the microprocessor for processing 16 bits of data. It is a single-user and single-tasking operating system. It is easy to load and install. DISADVANTAGES: It is a command-line operating system, which means that you have to enter singl...