|
|
 |
 |
| |
|
| |
Internet Related FAQs |
|
What is a web browser?
|
|
|
->
|
You get access to the WWW through an application called a 'browser', like
Netscape or Mosaic. To 'browse' is to search the WWW for information.
|
|
When you sit down and look at web pages, you are using a web
browser. This is the piece of software that communicates with web servers for
you via the HTTP protocol, translates HTMLpages and image data into a nicely
formatted on-screen display, and presents this information to your eyeballs --
or to your other senses, in the case of browsers for the vision-impaired and
other alternative interface technologies. Web browsers also appear in simpler
devices such as Internet-connected cell phones, like many Nokia models, and PDAs
such as the Palm Pilot. |
|
|
The most common web browser, by a large margin, is Microsoft
Internet Explorer, followed by the open-source Mozilla browserand its
derivatives, including Netscape 6.0 and later. Apple's new Safari browser is
gaining popularity on Macintoshes running MacOS X, and the Operashareware
browser has a loyal following among those who are willing to pay for the fastest
browser possible, especially on older computers. The Lynx browser is the most
frequently used text-only browser and has been adapted to serve the needs of the
vision-impaired.
|
|
|
|
What was the first web browser?
|
|
|
->
|
Tim Berners-Lee who invented the World Wide Web in 1989 and first deployed a
working system in 1990, did so by writing a web browser for the NeXTStep
operating system. The original "WorldWideWeb" browser program had a graphical
user interface and so on and is definitely recognizable to most people as a web
browser. However, WorldWideWeb did not support graphics embedded in pages when
it was first released. You can learn more about the original "WorldWideWeb"
browser from Tim Berners-Lee himself.
|
The first web browser to become truly popular and capture the imagination of
the public was NCSA Mosaic. Developed by Marc Andreessen, Jamie Zawinski and
others who later went on to create the Netscape browser, NCSA Mosaic was the
first to be available for Microsoft Windows, the Macintosh, and the Unix X
Window System, which made it possible to bring the web to the average user. The
first version appeared in March 1993. The "inline images," such as the
boutell.com logo at the top of this page, that are an integral part of almost
every web page today were introduced by NCSA Mosaic 2.0, in January of 1994.
Mosaic 2.0 also introduced forms.
Netscape is the browser that introduced most all of the remaining major
features that define a web browser as we know it. The first version of Netscape
appeared in October 1994 under the code name "Mozilla." Netscape 1.0's early
beta versions introduced the "progressive rendering" of pages and images,
meaning that the page begins to appear and the text can be read even before all
of the text and/or images have been completely downloaded. Version 1.1, in March
1995, introduced HTML tables, which are now used in the vast majority of web
pages to provide page layout. Version 2.0, in October 1995, introduced frames,
Java applets, and JavaScript. Version 2.0 was the last version of Netscape to
introduce a major feature of the web as we know it today; later versions
improved reliability and stability and introduced features that did not catch on
as standards for all browsers. In 1998, Netscape decided to release their
browser source code as open source software, and the Mozilla project began.
|
|
|
Microsoft Internet Explorer is by far the most common web
browser in use as of this writing. Internet Explorer 1.0, released in August
1995, broke no important new ground in a way that became part of a future
standard. Later versions of Internet Explorer quickly caught up; Internet
Explorer 3.0 was very close to Netscape 2.0's feature set. In July 1996,
Internet Explorer 3.0 beta introduced the first useful implementation of
cascading style sheets, which allow better control of the exact appearance of
web pages. In April 1997, Internet Explorer 4.0 introduced the first quality
implementation of the Document Object Model (DOM), which allows Javascript to
modify the appearance and content of a web page after it has been loaded. |
|
|
|
What is a web server?
|
|
|
->Web servers are the computers that actually run web sites. The term "web server"
also refers to the piece of software that runs on those computers, accepting
HTTP connections from web browsers and delivering web pages and other files to
them, as well as processing form submissions. The most common web server
software is Apache, followed by Microsoft Internet Information server; many,
many other web server programs also exist. For more information about web
servers and how to arrange hosting for your own web pages, see the creating web
sites section.
|
|
|
What is HTML and XHTML?
|
|
|
->
|
HTML , or HyperText Markup Language, is a simple markup language used to
make web pages.
|
Although all modern word processors and many specialized tools can be used to
make web pages without learning HTML at all, learning HTML itself is a useful
way to learn more about the web and provides more control over the results.
Luckily, HTML is very simple and quite easy to learn.
HTML was intended to be an instance of SGML, a general-purpose markup
language, but many HTML pages do not comply with the requirements of SGML.
XHTML, which supersedes HTML, is a newer standard which complies fully with the
requirements of XML. XML itself is a further refinement of SGML.
Here is a simple example of an HTML document. To try this out for yourself,
simply create a new file called mypage.html with any text editor, such as
Windows notepad. Paste in the HTML below, make any changes that please you, and
save the document. Then pick "open" from the File menu of your web browser,
locate the file you have just made, and open it. If you make further changes,
you will need to "save" again and then click "reload" or "refresh" in your
browser to see the results.
Of course, this is just a simple example. HTML can do far, far more than
this. A complete tutorial can be found at Dave's HTML Guide.
<title>Title of My Page Goes Here</title> <h1>Heading Of
My Page Goes Here</h1> <a href="http://news.google.com/">Follow
this link to Google News</a> <p> Here is a picture of my
cat: </p> <p> <img src="cat.jpg" /> </p>
|
|
Notice that the HTML elements are simple enough to recognize and nearly
self-explanatory. The text between the opening and closing <title> and
</title> elements becomes the title of the web page. The text between the
<h1> and </h1>elements is displayed as a "level one heading," which
is typically a very large, bold font. The text between the opening and closing
<a> and </a> elements becomes a link to another web page; the URL of
the web page to be linked to is found in the HREF attribute of the <a>
element as shown in the example above. The <p> element encloses a
paragraph.
The <img> element includes an image in your page; the image is
displayed at that point in the page, as long as the image file specified by the
URL in the SRC attribute actualy exists. Since the SRC attribute I used here
contains a simple filename, the cat picture will be shown as long as the file
cat.jpg is in the same directory as the page. The same trick can be used in HREF
attributes in <a> elements, to conveniently link to pages in the same
directory. For more information about images and how to create them in formats
appropriate for the web, see the image file formats entry.
The <img> element has a / before the > to signify that it is not a
container and that no closing </img> is expected.
Of course, a web page sitting in a file on your own computer is not yet
visible to anyone in the outside world. See the setting up web sites entry to
learn more about how to create web sites that others can see. |
|
|
|
What is a web pages?
|
|
|
->Every web site is made up of one or more web pages -- like the one you are
looking at right now! This text is part of a web page, and is written in the
HyperText Markup Language (HTML). In addition to text with hyperlinks, tables,
and other formatting, web pages can also contain images. Less commonly, web
pages may contain Flash animations, Java applets, or MPEG video files. For more
information and an example, see the HTML entry.
|
|
|
What is a URL?
|
|
|
->
Look up at the top of this web page. Above the page you will see the "location
bar" of your web browser, which should contain something very like this:
http://www.boutell.com/newfaq/basic/url.html
This is the Uniform Resource Locator (URL) of the web page you are looking at
right now. A URL can be thought of as the "address" of a web page and is
sometimes referred to informally as a "web address."
URLs are used to write links linking one page to another; for an example, see
the HTML entry.
A URL is made up of several parts. The first part is the protocol, which
tells the web browser what sort of server it will be talking to in order to
fetch the URL. In this example, the protocol is http.
The remaining parts vary depending on the protocol, but the vast majority of
URLs you will encounter use the http protocol; exceptions include file URLs,
which link to local files on your own hard drive, ftp URLs, which work just like
http URLs but link to things on FTP servers rather than web servers, and mailto
URLs, which can be used to invite a user to write an email message to a
particular email address.
The second part of the example URL above is the fully qualified domain name
of the web site to connect to. In this case, the fully qualified domain name is
www.boutell.com. This name identifies the web site containing the page. The term
"fully qualified domain name" refers to a complete web site or other computer's
name on the Internet. The term "domain name" usually refers only to the last
part of the name, in this case boutell.com, which has been registered for that
particular company's exclusive use. For more information about registering
domain names, see the setting up web sites entry.
The third part of the example URL is the path at which this particular web
page is located on the web server. In this case, the path is
/newfaq/basic/url.html. Similar to a filename, a path usually indicates where
the web page is located within the web space of the web site; in this case it is
located in the basic sub-folder of the newfaq folder, which is located in the
top-level web page directory of our web site.
|
|
|
What is World Wide Web?
|
|
|
->
|
The term "World Wide Web" refers to all of the publicly accessible web sites
in the world, in addition to other information sources that web browsers can
access. These other sources include FTP sites, USENET newsgroups, and a few
surviving Gopher sites.
|
|
The newest and most ambitious of the special Internet
services. The World Wide Web provides full text and graphical access to
documents created using Hypertext Markup Language(HTML). It is the first
Internet service that incorporates many of the most popular platforms (e-mail,
Gopher, FTP, Wais, Newsgroups). Attributed to the world wide success of the
Internet. Often abbreviated 'WWW'.
|
|
|
|
What is Internet?
|
|
|
->
|
"The Internet" refers to the worldwide network of interconnected computers, all
of which use a common protocol known as TCP/IP to communicate with each other.
Every publicly accessible web site is hosted by a web server computer, which is
a part of the Internet. Every personal computer, cell phone or other device that
people use to look at web sites is also a part of the Internet. The Internet
also makes possible email, games and other applications unrelated to the World
Wide Web.
|
|
The vast collection of interconnected networks that all use
the TCP/IP protocols and that evolved from the ARPANET of the late 1960s and
early 1970s. The Internet connects roughly 60,000 independent networks into a
vast, global Internet.
|
|
|
|
|
|
|
|
DOMAIN REGISTRATION |
|
What is a Domain name?
|
|
|
->A Domain name is the essence of your company's online identity. It is the
address your customers use to find information about your products and services
on the web. It is your permanent address that can follow you no matter where in
the world you might move. This is a very powerful tool for individuals as well
as businesses.
Domain names allow Internet users to type in a name,
such as www.Creativewebsols.com, to identify a numeric Internet Protocol (IP)
address such as 202.71.129.42. The purpose of Domain name is to allow users
connected to the Internet the ability to find web sites without having to
memorize the long, numerical (IP) addresses that actually locate the computers
or servers on the Internet.
|
|
|
Why do I need a Domain Name?
|
|
|
->
There are numerous uses for Domain names 1. Domain names can be used to
establish a unique identity in cyberspace. Companies often choose a Domain
name that corresponds to their company name. For instance, Creative web
solution's web site is at creativewebsols.com and Yahoo is at
www.yahoo.com Anyone thinking about establishing a presence on the Internet
should register a Domain name. You don't have to utilize it right away.
2. Domain names can be used to give you a unique, permanent
email address Many companies will set you up with email forwarding, where
messages sent to @yourDomain.com will be redirected to your existing mailbox as
provided by your ISP. This lets you choose a truly unique email address and keep
the same email address regardless of which ISP you use to access the
Internet.
|
|
|
For how long can I register a Domain name?
|
|
|
->Creative web solutions offers registration from 1 year up to maximum 10 years
for .com, .net or org extension. (the cctlds are subject to terms and
conditions, which are regulated independently).
|
|
|
|
|
SHARED HOSTING |
|
What is a Web site and why do I need it?
|
|
|
->In general, a web site is a place on the Internet that can be used to present
something to the Internet audience. A website is like a necessity in today's
society. Millions of new users are connecting to the Internet from any part of
the world at any time. People use the Web to do almost everything, including
banking, shopping, and researching. Not only is it quick, convenient and easy,
but also it is always a changing environment. Newly updated sites always appear
and there are always new things to explore on the Internet because of its
comprehensiveness. A website is like a phone number, it is the first place
people look before they do business with your company. If they don't find you,
they will then find your competitors. A website could present vital company
information to the prospective client. Thus, there are endless opportunities on
the Internet.
|
|
|
What is shared/virtual hosting?
|
|
|
->In a shared hosting formula, one server is shared for multiple websites. An
advantage of shared hosting in that it is an affordable solution, which doesn't
require any compromises in safety and security, performance and reliability.
Shared hosting is the easiest way to bring your website to the Internet. It's
ideal for static websites and smaller web applications or e-commerce front
offices with a limited product catalogue.
|
|
|
Which Operating System do I choose?
|
|
|
->
For each Creative web solutions hosting
package you can choose the operating system. You have the choice between Windows
2000 and Linux. If you have a static website, the choice is not bound to
technical limitations, only personal preferences are the deciding factor. The
control panels and the services offered are for both Linux and Windows almost
identical. Our Windows 2000 packages support ASP-pages, Cold Fusion, SA File up,
CDONTS (mailing component) as well as Perl-scripting. The database can be either
an MS Access database or an SQL Server 2000.
For large numbers of visitors or complex websites SQL
Server 2000 is the database of choice. Our Linux packages support PHP, CGI as
well as Perl-scripting. The database can be a MySQL database.
|
|
|
|
|
|
|
EMAIL SERVICE |
|
What is my email-id/email address?
|
|
|
-> Your email-id or email address is an address, which can be used to send or
receive emails e.g. you@yourdomain.com or you@creativewebsols.com. Your email-id
consists of two parts - local part and domain part. In you@creativewebsols.com
the word "you" is called local part and " creativewebsols.com" is the domain
part.
|
|
|
What is web mail?
|
|
|
->Web mail is an email service, which is used to check emails using a web browser
such as "Microsoft Internet Explorer", "Netscape Navigator" etc
|
|
|
What is pop3 mail?
|
|
|
->POP3 stands for "Post Office Protocol Version 3" which is used to retrieve
emails kept on a mail server to your pc using an email client such as "Microsoft
Outlook Express", "Microsoft Outlook", "Netscape Messenger", "Eudora Mail"
etc.
|
|
|
What is my mailbox?
|
|
|
->Mailbox is the file that stores the messages sent to your email address. Every
email-id has one mailbox attached to it.
|
|
|
What is my pop-id?
|
|
|
->Pop-id is a unique number assigned to your mailbox, which is also used as your
email username while you retrieve your emails from Creative web solution's Mail
Server using an email client such as "Microsoft Outlook Express", "Microsoft
Outlook", "Netscape Messenger", "Eudora Mail" etc. It is an alphanumeric number
that looks like this "a1234567-1".
|
|
|
What is my email alias?
|
|
|
->If your email address is you@yourdomain.com, your email alias is "you" (part of
your email address before @ sign). It is also called "local part" of an email
address
|
|
|
|
|
WEB MAIL |
|
What is web mail?
|
|
|
->Web mail is a browser-based interface for your reading your emails. Instead of
downloading emails on to your PC using email clients such as Microsoft Outlook
Express, Netscape Messenger, Eudora Mail etc., you can view your emails from the
server directly using your web browser such as Microsoft Internet Explorer,
Netscape Navigator, and Opera etc. This email service gives you an opportunity
to access your emails from your office, your home or while traveling anywhere in
the world.
|
|
|
What is Creative web solutions Webmail Gateway?
|
|
|
->Creative web solutions Webmail gateway is the Webmail service offered by
Creative web solutions to all its email users enabling them to check their
emails sent to alias@theirdomain.com from anywhere in the world easily and
quickly.
|
|
|
|
|
What will happen if I exceed my 20 MB limit?
|
|
|
->You'll get a warning message as and when your mailbox reaches 80% of the
assigned quota asking you to delete big messages to free your mailbox space. If
you exceed 100% of the assigned 20 MB quota, emails sent to you will start
bouncing to the senders.
|
|
|
Can I send/receive Attachments?
|
|
|
->Yes, you can send a maximum of 3 attachments at a given point in time and can
read any number of attachments. The maximum size allowed for sending an
attachment file is limited to 2 MB.
|
|
|
|
|
|
| |
|
|
|
 |
|
 |
|