Friday, February 6, 2009

DIV and SPAN in CSS

The <span> and <div> tags were introduced later in the HTML game that are very useful when dealing with Cascading Style Sheets. People tend to use them in similar fashion, but they serve different purposes.

<Div>

The <div> tag defines logical divisions in your Web page. In terms of layout, the <div> tag does only one thing, it determines the alignment of that section of your page.

<div> also gives you the chance to define the style of whole sections of HTML. You could define a section of your page as a call out and give that section a different style from the surrounding text.

But that's not all it does! The <div> tag gives you the ability to name certain sections of your documents so that you can affect them with style sheets or Dynamic HTML.

One thing to keep in mind when using the <div> tag is that it breaks paragraphs. It acts as a paragraph end/beginning, and while you can have paragraphs within a <div> you can't have a <div> inside a paragraph.

The primary attributes of the <div> tag are:

align (left|center|right|justify)
style
name

Even if you don't use style sheets or DHTML, you should get into the habit of using the <div> tag. This will give you more flexibility when more XML parsers become available. Also, you can use the NAME attribute to name your sections so that your Web pages are well formed.

Because the <center> tag has been deprecated in HTML 4.0, it is a good idea to start using <div> align="center" to center your text and images. You can also use the text-align: center style tag.

More About the <div> Tag

<span>

The <span> tag has very similar properties to the <div> tag, in that it affects the style of the text it encloses. Items in the <span> can be aligned or given specific style attributes.

The primary difference between the <span> and <div> tags is that <span> doesn't do any formatting of it's own. The <div> tag acts as a paragraph break, because it is defining a logical division in the document. The <span> tag simply tells the browser to apply the style and align rules to whatever is within the <span>.

The primary attributes of the <span> tag are:

align (left|center|right|justify)
style

Use <span> when you want to change the style of elements without naming them in a separate division within the document. For example, if you had a Level 3 Heading (<h3>) that you wanted the second word to be red, you could surround that word with <<span> style="color : #ff0000;">2ndWord</<span>> and it would still be a part of the <h3> tag .

CSS style properties

Font properties

Property 

Value 

Description 

font-family 

Specific font (Arial, Times, Verdana) 
Familly (serif, sans-serif, fantasy, monospace, cursive)

Defines one or more font names or font families. If multiple fonts are defined, the first one found on the user's system will be used. 

font-style 

normal, italic, oblique 

Defines the writing style 

font-weight 

lighter, normal, bold or bolder. 
numeric value (100, 200, 300, 400, 500, 600, 700, 800, 900)

Defines the thickness of the font 

font-size 

xx-small, x-small, small, medium, large, x-large, xx-large 
size in points (pt), cm, %

Defines the font size 

font-variant

normal, small-caps 

Defines a variant (small capitals) 

font 

font: Verdana, Arial, bold italic 8px; 

Shortcut for all properties 

Text and paragraphs

Property 

Value 

Description 

color 

"#RRGGBB" 

Defines the text colour 

line-height 

line-height: 12pt; 

Defines line spacing

text-align 

left, center, right or justify 

Defines text alignment 

text-indent 

text-indent: 5px; 

Defines indentation 

text-decoration 

blink (blinking), underline (underlined), line-through(strikethrough), overline (overlined) or none (no decoration)

Defines decoration 

text-shadow 

text-shadow: 1px 2px 4px black; 

Defines a drop shadow for the text, representing, respectively, the shadow's right-shift, down-shift, blur radius, and colour. 

text-transform 

uppercaselowercase, or capitalize

Defines the case of the text

white-space 

normal (text will wrap to the next line), pre (text appears with whatever blank spaces were entered), nowrap (text will not wrap) 

Hyphenation 

word-spacing 

word-spacing: 6px; 

Defines how much space to put between words

width 

in points (pt), inches (in), in cm, on pixels (px), or as a % 

Defines the width of a text element or image 

height 

in points (pt), inches (in), in cm, on pixels (px), or as a % 

Defines the height of a text element or image 

Background colours

Property

Value 

Description 

background-color 

"#RRGGBB" 

Defines a background colour 

background-image 

url(http://url) 

Defines a background image 

background-repeat 

repeat, repeat-x, repeat-y, no-repeat 

Defines how the background image repeats 

background-attachment

scroll, fixed 

Specifies if the background image will stay in place when the screen scrolls 

background-position 

top, middle, bottom, left, center or right 

Positions the image relative to the upper-left corner 

background 

background: url(test.jpg) fixed repeat;

Shortcut for background properties 

Margins

Property 

Example 

Description 

margin-top 

margin-top: 5px; 

Value of top margin 

margin-right 

margin-right: 0.5em; 

Value of right margin 

margin-bottom 

margin-bottom: 2pt; 

Value of bottom margin 

margin-left

margin-left: 0; 

Value of left margin 

margin 

margin: 5px 0.5em 2pt 0; 

Shortcut for margin properties 

Borders

Property 

Value 

Description 

border[-top -left -bottom -right]-width 

in points (pt), inches (in), in cm, on pixels (px), or as a % 

Border thickness [for the location given]

border[-top -left -bottom -right]-color 

border-left-color: #RRGGBB; 

Border colour [for the location given] 

border[-top -left -bottom -right]-style 

soliddasheddotteddouble or ridge

Border style [for the location given]

border-collapse 

collapse
separate

Adds or removes "3D" effect 

Border 

border: 1px 0 0 2px dotted green; 

Global shortcut for border properties 

Padding

Property 

Value 

Description 

padding-top 

padding-top: 3px; 

Padding between the element and the top border

padding-right 

padding-right: 0.25em; 

Padding between the element and the right border 

padding-bottom 

padding-bottom: 0; 

Padding between the element and the bottom border 

padding-left 

padding-left: 2pt; 

Padding between the element and the left border 

padding 

padding: 3px 0.25em 0 2pt; 

Shortcut for all padding properties 

Tables

Property 

Value 

Description 

border-collapse 

separate or collapse

Merges cell borders (collapse), doesn't merge them (separate)

border-spacing 

border-spacing: 4px; 

Cell spacing 

caption-side 

top, bottom, left or right 

Placing the table's caption 

empty-cells 

show or collapse

Display (show) or hide (collapse) empty cells

table-layout 

fixed (independent of cell content) or auto(depending on cell content)

Fixed or variable width 

speak-headers

always (always before each cell) or once(just once)

Property for the blind and visually impaired, indicating how sound behaves when reading table header cells 

Lists

Property 

Value 

Description 

list-style-type 

decimal, upper-roman, lower-latin, disc, circle, square or none

Type of bullets and numbering 

list-style-image 

list-style-image: url(image.png); 

Personalise bullets with an image 

list-style-position 

inside or outside 

Specifies bullet indentation 

list-style 

  

Shortcut to list properties

Page layout

Property 

Value 

Description 

@page 

@page(size: portrait) 

Defines print layout 

size 

auto, landscape or portrait 

Printing format 

margin-top 

margin-top: 3 cm; 

Top margin 

margin-right 

margin-right: 1.5 cm; 

Right margin 

margin-bottom 

margin-bottom: 1 cm;

Bottom margin 

margin-left 

margin-left: 2 cm; 

Left margin 

marks 

crop (crop marks), cross (cross marks), none (no marks) 

Crop marks and cross marks 

page-break-before 

Always, avoid 

Forces a page break before an element 

page-break-after 

Always, avoid

Forces a page break after an element 

orphans 

orphans: 2; 

Avoids having orphaned lines at the end of a page. Defines the minimum number of lines of an element that are left at the bottom of a page before a page break. 

widows 

widows: 1; 

Avoids having widowed lines at the end of a page. Defines the minimum number of lines of an element that are left at the top of a page after a page break.

ABOUT DHTML CSS and DOM

Q: What is DHTML?


 

  • DHTML stands for Dynamic Hypertext Markup Language is a combination of technologies for creating dynamic web sites. General phenomenon that DHTML is combination of html 4.0,style sheets and JavaScript.
  • "DHTML is term used by some vendors to describe the combination of HTML,Style sheets and scripts that allows documents to be animated."


 

Q: What is CSS?


 

  • We can look at Cascading Style Sheets (CSS) from a number of contextual perspectives. CSS were created to provide a powerful, yet flexible means for formatting HTML content.CSS contains formatting options using "STYLE" that can be applied to document elements.CSS stored in "*.css" file
  • CSS help designers to do less work on the html elements for formatting elements color, font, backgrounds etc. that helps designer to maintain one theme in the entire website.
  • HTML tags are used to display contain in document while CSS used to set different looks in to the document so contain can be display in effective manner.
  • Major browser supporting CSS and its normally extension is "CSS", you can embedded CSS with you html document using <link> tag.

Syntax:

Selector

{

    Property : value;

}

Selector - can be any html element.

Property – is attribute you wish to change.

Value- is value for attribute property and value separated by colon " : ".

For e.g.

Body { color: black }

Here body of document will be in black color.

Q: What is DOM ?

  • The Document Object Model (DOM) is an application programming interface (API) for valid HTML and well-formed XML documents. It defines the logical structure of documents and the way a document is accessed and manipulated. In the DOM specification, the term "document" is used in the broad sense - increasingly, XML is being used as a way of representing many different kinds of information that may be stored in diverse systems, and much of this would traditionally be seen as data rather than as documents. Nevertheless, XML presents this data as documents, and the DOM may be used to manage this data.
  • With the Document Object Model, programmers can build documents, navigate their structure, and add, modify, or delete elements and content. Anything found in an HTML or XML document can be accessed, changed, deleted, or added using the Document Object Model, with a few exceptions - in particular, the DOM interfaces for the XML internal and external subsets have not yet been specified.
  • As a W3C specification, one important objective for the Document Object Model is to provide a standard programming interface that can be used in a wide variety of environments and applications. The DOM is designed to be used with any programming language.


 


 


 

Thursday, October 16, 2008

NETWORK SERVICES

NETWORK SERVICES
FILE SERVICES
 It allows network users to share files using file server for providing this kind of services.
 File services are network applications that store retrieve and move the data with the help of network file server.
 User can read write and manage files with in this server.
PRINT SERVICES
 Print servers are used to provide that kind of print services
 This service also allows multiple and simultaneous printing access facility.
 Network software uses printing queues which has special storage area where print jobs are stored and then sent to the printer in organized manner.
 Jobs in print queues may be forward in order to receive the print according to the priority.
 Printer can be placed anywhere in network and nay network users can use the printer.
 The data sent by the user is transfer to the network printer at network speed.
 Another print service is fax service it can be used for communication purpose.
 In this services user can fax from its own work station to any other fax machine.
 A fax machine can also work as sharing device in computer network.
COMMUNICATION SERVICE
 Communication server handles data flow between numbers of networks.
 It also handles the incoming and outgoing remote user and internet traffic.
 Windows NT domain controller works as communication server.
SECURITY SERVICE
 Security starts with the login procedures to ensure that a user who is accessing the network is using its password so, that only authorized users can log on to the network.
 Login restrictions can force the user to login from a specific station and during a specific time.
 Administrative tools can be used for security service in network operating system.
DATABASE SERVICE
 Database services are provided by the data server
 This service can provide networking with powerful database handling capabilities.
 Most database systems are based on client server architecture so that database application can run on separate components.
 The client side it provides the interface and handles less intensive functions line data request.

What is network?

What is network?

An interconnected computer systems and also peripherals and devices with the purpose of data communication and information exchange are call network.
Or
Connecting one or more than one computer to each other in such a way that they can share their hardware and software resources called network.
Objectives of network:-
• Using network facilities we can share hardware like cd-drive, printer and other memory devices
• Network provides security to data files.
• Faster data communication without using external memory.
Components of network:-
1. NIC [ Network Interface Card ]
• A chip based circuit board used to connect computer to network or server
• A card is activities by installing it’s driver software
• A card is connect to I/O bus in a vacant slot
• The card contains physical interface for connectivity between computer’s internal and external resources
2. HUB
• A network device where the information flow is accumulated and then distributed various groups and users.
• It can be used between users on the same to LAN and the users on different LAN also [local area network].
• It serves as the central point where cables from all nodes come together.
• HUBs are available in different shapes and size it also provides limited management facility
• Dumb Hub (passive hub):- this type of hub only use for the data communication and there is no management facility.
• Intelligent Hub (Active hub);- this type of hub used for communication and also decision making it also has management facility.

3. Bridge
• A device that supports LAN to LAN communication is bridge.
• It will remember all the network addresses on both side of LANs and regulate the flow of traffic.


4. Router
• Router interconnects two or more physical and logical network and work at network layer.
• It distinguishes data packets according to protocol like, TCP/IP, FTP, HTTP etc.
• It will remember matrices to determine the optimal path of workstation in computer network.

5. Gateway
• A shared connection between LAN and a larger system such as mainframe computer or a large packet switching network whose communication protocols are different.
• It usually is slower than bridge or a router, it is a communication of hardware or software.
• It has its own processor and memory used to perform protocol conversion.

6. SERVER
• A server is an important component of a dedicated server network.
• The server runs on network operating system and offers network services to users at their individual workstation.
• These services include file storage securing, users management, network commands and many things.
• The most common type of server is file server
• When client computer send request to server , server will give respond to that computer.

7. Workstation
• When computer connect to a network it becomes a node on the network and is called a work station or client.
• It has its own local operating system e.g. DOS, win 98, win XP.
• Its job is to execute program files retrieved from the network and the server’s job is to deliver those files to the work station.

8. Cabling system
• In network cabling system is a media used to connect server and network station together.
• In case of wireless network that uses radio or infrared technology where cables are not required.
• There is several kind of cables used in networking like twisted pair cable, coaxial cable, fiber optics cable.

Advantages of networking:-
 File sharing
 Resource sharing
 Database sharing
 Creation of workgroup using user management facility
 Centralized management system.
 Provide security in corporate structure.
 Ability to use network software.
 Ability to use e-mail.

PUBLIC TELEPHONE NETWORK

PUBLIC TELEPHONE NETWORK
 Communication must occur between distinct point but few organization can justify the cost required.
 LAN is characterized by high bandwidth and that company controls and maintain all the connectivity of devices as well as the transmission media (wire).
 The company could have transmission media like infrared or satellite communication to establish connectivity.
 Another possibility is different kind of cables can be used for connectivity
 A variety of commercial options are available that enable organization to pay per only the level of service they require.
It has two main types
.
1. PSTN [PUBLIC SWITCHED TELEPHONE NETWORK]
 This commercial network has its own existing infra structure supplied by the Telephone Company or Cable Company.
 The feature of PSTN is its low speed, analog nature of transmission, a restricted bandwidth and also wide spread availability.
 It is designed for telephone network but if we want it for digital communication than modem is required.
 When the link setup is unreliable and can terminate without warning.
 At that time PSTN communication medium is advisable.
 This connects are easy to get at short notice. This is widely available and covers almost every location where people live and work.
 PSTN is mostly useful for occasional users or as a backup to the private services
 Fax machines can also operated in this network.
2. PSDN [PUBLIC SEITCHED DIGITAL(DATA) NETWORK]
 It covers number of technology available for public telephone network.
 The main feature is its high level of reliable and high quality of connection.
 They can support both low and high speed at appropriate cost.
 It can also use to link computer and system and network of one organization to several other organizations.

INTRODUCTION TO INTERNET

Q: what is internet?

The Internet is the largest computer network in the world, connecting millions of computers. A network is a group of two or more computer systems linked together.


 

Internet is network of networks. it begin in 1969 as an experiment for computers of U.S. defense and they connected their network with the research institute for the purpose of technological weapon those research institutes connect that network to academic centers like university and colleges. Then they connect that network with one more network which is commercial network at that time it became a network which used by government and some specialized people its call ARPANET [advance research project agency network].

Then in 1990 it made available to all the people of world using telephone lines and other networks and all networks of different countries and centers are connected together and became internet [inter-connection of networks].

The network or computer operating in different platform is connected to internet by common protocol known as TCP/IP. Internet is a window to global information super high-way.

It is a worldwide network of independent smaller networks or other connected machines spanning the entire globe.

Around the world each country has at least one backbone network that operates at very high speed and carries the bulk of the traffic.

Internet was established by VSNL in India at 15th august 1995.Internet is providing services like e-mail service, downloading and uploading services, forums, network news, blog , search engine, communication services in form of chatting and voice and video conferencing and shopping carts online, online customer supports etc.

Internet is managed by following organizations:

IAB: Internet Architecture Board

An organization (originally Internet Activities Board) that oversees standards and development for the Internet. This board also administrates, with the help of the IANA (Internet Assigned Numbers Authority), the internet(1) sub tree in the global tree in which all networking knowledge is stored. The IAB has two task forces: IETF (Internet Engineering Task Force) and IRTF (Internet Research Task Force).

IESG: Internet Engineering Steering Group

In the Internet community, the executive committee for the Internet Engineering Task Force (IETF).

IETF: Internet Engineering Task Force.

A committee that operates under the auspices of the Internet Activities Board (IAB) to help establish standards relating to the Internet. The IETF is largely responsible for formulating the Remote Network Monitoring Management Information Base (RMON MIB), which is expected to become the standard for monitoring and reporting network activity in the Internet environment.

IRTF: Internet Research Task Force

A group within the Internet community that works on long-term research projects. These projects may concern any aspect of Internet operations, and some results have led or may lead to major changes in certain aspects of Internet activity.

InterNIC: Internet Network Information Center.

InterNIC is responsible for the assigning and registering IP address.

ICANN: The Internet Corporation for Assigned Names and Numbers (ICANN) is the authority that coordinates the assignment of unique identifiers on the Internet, including domain names, Internet Protocol (IP) addresses, and protocol port and parameter numbers. A globally unified namespace (i.e., a system of names in which there is at most one holder for each possible name) is essential for the Internet to function. ICANN is headquartered in Marina del Rey, California, but is overseen by an international board of directors drawn from across the Internet technical, business, academic, and non-commercial communities. The US government continues to have the primary role in approving changes to the root zone file that lies at the heart of the domain name system. Because the Internet is a distributed network comprising many voluntarily interconnected networks, the Internet, as such, has no governing body. ICANN's role in coordinating the assignment of unique identifiers distinguishes it as perhaps the only central coordinating body on the global Internet, but the scope of its authority extends only to the Internet's systems of domain names, IP addresses, protocol ports and parameter numbers.


 

Summary of internet

In 1969, the US Department of Defense started a project to allow researchers and military personnel to communicate with each other in an emergency. The project was called ARPAnet and it is the foundation of the Internet.

Throughout the 1970's, what would later become the Internet was developed. While mostly military personnel and scientists used it in its early days, the advent of the World Wide Web in the early 1990's changed all that.

Today, the Internet is not owned or operated by any one entity. This worldwide computer network allows people to communicate and exchange information in new ways.

According to www.commerce.net, in April of 1999, there were 92.2 million Internet users over the age of 16 in the United States and Canada. By 2005, it is predicted 75% of the total US population will be online.


 

Q: what is intranet?

An intranet is a private computer network that uses Internet protocols and network connectivity to securely share part of an organization's information or operations with its employees. Sometimes the term refers only to the most visible service, the internal website. The same concepts and technologies of the Internet such as clients and servers running on the Internet protocol suite are used to build an intranet. HTTP and other Internet protocols are commonly used as well, such as FTP. There is often an attempt to use Internet technologies to provide new interfaces with corporate "legacy" data and information systems.

Briefly, an intranet can be understood as "a private version of the Internet," or as a version of the Internet confined to an organization. The term first appeared in print on April 19, 1995, in Digital News & Review in an article authored by technical editor Stephen Lawton.


Intranets differ from "Extranets" in that the former are generally restricted to employees of the organization while extranets can generally be accessed by customers, suppliers, or other approved parties.

There does not necessarily have to be any access from the organization's internal network to the Internet itself. When such access is provided it is usually through a gateway with a firewall, along with user authentication, encryption of messages, and often makes use of virtual private networks (VPNs). Through such devices and systems off-site employees can access company information, computing resources and internal communications.

Intranets are also being used as culture change platforms. For example, large numbers of employees discussing key issues in an online forum could lead to new ideas.

Intranet traffic, like public-facing web site traffic, is better understood by using web metrics software to track overall activity, as well as through surveys of users.

Advantages of intranets

  1. Workforce productivity: Intranets can help users to locate and view information faster and use applications relevant to their roles and responsibilities. With the help of a web browser interface, users can access data held in any database the organization wants to make available, anytime and - subject to security provisions - from anywhere within the company workstations, increasing employees' ability to perform their jobs faster, more accurately, and with confidence that they have the right information. It also helps to improve the services provided to the users.
  2. Time: With intranets, organizations can make more information available to employees on a "pull" basis (i.e.: employees can link to relevant information at a time which suits them) rather than being deluged indiscriminately by emails.
  3. Communication: Intranets can serve as powerful tools for communication within an organization, vertically and horizontally. From a communications standpoint, intranets are useful to communicate strategic initiatives that have a global reach throughout the organization. The type of information that can easily be conveyed is the purpose of the initiative and what the initiative is aiming to achieve, who is driving the initiative, results achieved to date, and who to speak to for more information. By providing this information on the intranet, staffs have the opportunity to keep up-to-date with the strategic focus of the organization.
  4. Web publishing allows 'cumbersome' corporate knowledge to be maintained and easily accessed throughout the company using hypermedia and Web technologies. Examples include: employee manuals, benefits documents, company policies, business standards, newsfeeds, and even training, can be accessed using common Internet standards (Acrobat files, Flash files, CGI applications). Because each business unit can update the online copy of a document, the most recent version is always available to employees using the intranet.
  5. Business operations and management: Intranets are also being used as a platform for developing and deploying applications to support business operations and decisions across the internetworked enterprise.
  6. Cost-effective: Users can view information and data via web-browser rather than maintaining physical documents such as procedure manuals, internal phone list and requisition forms.
  7. Promote common corporate culture: Every user is viewing the same information within the Intranet.
  8. Enhance Collaboration: With information easily accessible by all authorized users, teamwork is enabled

  9. Cross-platform Capability: Standards-compliant web browsers are available for Windows, Mac, and UNIX.


 

INTERNET APPLICATION AND SERVICES

Email [Electronic Mail]:

  • Email service is used to communicate with each other by the message we can read or write or send or receive message from any one at any time.
  • This service is very easy , speedy and available at minimum cost.
  • Mail service is provided by mail server .mail server will store the all messages in to the inbox and for sending message it will use protocols in mail server user can login and manages the emails.
  • User can save time and money using mail-client application like, Microsoft outlook express and Netscape mail for transferring emails the mail application use some protocols
  • Protocols used in email services are:-

    POP & IMAP: [Post Office Protocol And Internet Message Access Protocol]

    This protocol will connect mail-client application to mail server and then receive all emails in the mail-client inbox from the mail server.

    SMTP:[Simple Mail Transfer Protocols]

    This protocol will sent the email from mail server to another mail server this will send text emails only.

    MIME:[Multipurpose Internet Mail Extensions]

    MIME is a mail handling standard developed by the IETF (Internet Engineering Task Force) to provide support for multimedia and multipart messages. MIME makes it possible to encode and transmit sound, video, and formatted data in a single message, and also to receive and handle (read, see, or hear) the message.


 

Chatting Services:

  • Chatting is also one type of internet service with the help of this service we can talk with each other via text messages.
  • If we can joint or attached web camera then also we can see each other.
  • Chatting service is provided by the chat server. This server will manage the text messages traffic in the chat box or chat application.

Internet News:

  • With the help of internet we can gather all the information about all the countries.
  • Internet news provides all the information and news about while world.
  • News server are used to store the news and also information and it will be used NNTP [Network News Transfer Protocol] for the transferring the news.


     

Voice and Video Conferencing:

  • Voice and video conferencing is important service for the internet
  • They can provide any voice chatting and video conferencing with the help of this service we can solve any query or question and they give directly answers or responses.

Online services:

  • Uploading: when we are putting information from our system to remote system or web server its call uploading, we can upload site and other files which contain information.
  • Downloading: when we are getting information in our system from remote system or web server its call downloading. We can download files and other resources like picture, sound files etc.
  • AOL[America On-Line]: AOL offering searching, shopping, channels online services , chatting and mailing services.
  • MSN[Microsoft Network]: Microsoft provide search of the web, news, images and its having its own encyclopedia also offers desktop searching via tool bar application. MSN messenger will allow you chat with the other users.
  • CompuServe: CompuServe is online service which can provide services to those users who subscribe for the services. Members can also exchange information with CompuServe's other members. It provide consumer information service. It had the largest consumers for their services approximately 2 million.
  • Telnet: it allows an internet user to access a remote login after properly connected the remote host user can enter data or running programs from that login.
  • Usenet: It is a bulletin board services of internet messages in this network are organized into thousands of topical groups or news groups which cover specific areas of internet.


 


 

TYPE OF ACCOUNTS

TCP/IP ACCOUNT

  • TCP/IP account is point to point protocol (PPP) or serial line protocol account (SLIP).
  • PPP or SLIP account is an internet amount that uses the PPP or SLIP communication protocol respectively.
  • There are most popular account because the most popular browsers. Internet explorer and Netscape navigator designed to work with PPP and SLIP.
  • PPP mere contemporary communication protocol then SLIP so choose PPP is if you have a choice when opening an account.
  • Compressed SLIP [CSLIP] is a simple efficient version of SLIP but still is not as good as PPP.
  • To use a PPP account you need a PPP compatible communication .The programmed dials phone using your modem and connect to the ISP logs in to your account by using your user name and password and then establish a PPP connection.
  • While connected you can be use a variety of program to read your emails browse the web and access other information from the internet.

SHELL ACCOUNT:

  • Before the advent of PPP and SLIP account most internet accounts were text only shell accounts and this account are still available from same ISP.
  • You can run a terminal emulation program on your pc to connect and internet host computer.
  • Most internet host runs unique operating system which is powerful but frequently confusing system and also we have to type unique commands to use a shell account.
  • When you use shell account you don't see graphics or use mouse and you can't easily store information on your own computer.
  • Shell account is generally use for file uploading and downloading process because uniqueness of file transfer speed.

    ISP [Internet Service Provider]

An ISP is a service provider that provides some way to connect to the Internet. Severe access methods are possible, and a particular ISP may allow any or all of these methods. ISPs (Internet Service Providers) fall along a spectrum with respect to service At one end, ISPs provide only Internet access; at the other end, online service providers have Internet access as only a small part of their business. Most ISPs charge at monthly rate, which allows the subscriber a limited number of hours online additional hours cost extra. Some ISPs will provide unlimited access for a (higher) fee.

ISP is an internet service provider is an organization that provides dial in internet account usually PPP, CSLIP, SLIP accounts and also sometimes unique shell account.

Features of ISP

Local Phone Number: Most of ISP has many phone numbers that your computers having a local phone number you don't need to spend mere on a long distance charges for internet connection.

Price: ISP externally charge for hours or speed they provide so you can select your ISP by calculating your usage or speed required.

Software: some ISP provides a CD-ROM or diskette with software that you can use to connect to use of internet.

Support: you never know when you are going to a problem so your ISP's technical support phone number and e-mail address should be open in 24 hours.

Speed: Some ISP has local access number that work with 28.8 kbps [kilo byte per second],33.6 kbps and 56 kbps modems some also support high speed of connections such as ISDN[Integrated service digital network],ADSL[Asynchronous digital subscriber line] at extra cost.

Accessibility: If the ISP's access numbers are frequently busy. You can have to do redialing until you connect. Ask internet users in your area whether they have trouble getting connected to the ISP.