UNIT II Design and Develop Web Pages (Part1)
UNIT II Design and Develop Web Pages (Part1)
The World Wide Web, abbreviated as WWW and commonly known as the Web, is
a system of interlinked hypertext documents accessed via the Internet. With a web
browser, one can view web pages that may contain text, images, videos, and other
multimedia and navigate between them via hyperlinks.
Website :
Website is a collection of various pages written in HTML markup language. There
are millions of websites available on the web. Each page available on the website is
called a web page and first page of any website is called home page for that site.
World Wide Web (WWW): The World Wide Web is based on several different technologies: Web
browsers, Hypertext Markup Language (HTML), and Hypertext Transfer Protocol (HTTP).
Web Browser: The web browser is an application software to explore www (World Wide Web). It
provides an interface between the server and the client and requests to the server for web documents and
services.
Web Server: Web server is a program which processes the network requests of the users and serves them
with files that create web pages. This exchange takes place using Hypertext Transfer Protocol (HTTP).
Web Pages: A webpage is a digital document that is linked to the World Wide Web and viewable by
anyone connected to the internet has a web browser.
Web Development: Web development refers to the building, creating, and maintaining of websites. It
includes aspects such as web design, web publishing, web programming, and database management. It is
the creation of an application that works over the internet i.e. websites.
WEB Servers :
To publish pages on the Web, you need a web server. A web server is the program
that runs on a computer and is responsible for replying to web browser requests for
files. You need a web server to publish documents on the Web. When you use a
browser to request a page on a website, that browser makes a web connection to a
server using the HTTP protocol. The browser then formats the information it got
from the server. Server accepts the connection, sends the contents of the requested
files and then closes.
Every Web server that is connected to the Internet is given a unique address made
up of a series of four numbers between 0 and 256 separated by periods. For example
68.178.157.132. When you register a Web address, also known as a domain name,
such ås " Google.com".
Protocols :
In computing, a protocol is a set of rules which is used by computers to communicate
with each other across a network. A protocol is a convention or standard that controls
or enables the connection, communication, and data transfer between computing
endpoints.
Client Server Model :
The Client-server model is a distributed application structure that divides the task or
workload between the providers of a resource (servers), and service requesters
(clients).
In the client-server architecture, when the client computer sends a request for
webpage to the server through the internet, the server accepts the requested process
and delivers the webpage requested back to the client. Clients do not share any of
their resources.
Examples of Client-Server Model are : Email, World Wide Web, etc.
< body
Document body related tags
< /body >
< /html >
HTML Tags :
HTML is a markup language and makes use of various tags to format the content.
These tags are enclosed within angle braces < Tag Name > . Except few tags,
most of the tags have their corresponding closing tags. For examples < html > its
closing tag </html> and < body > tag has its closing tag </body > tag etc.
HTML document uses the following tags :
Sr.No. Tags & their description
1 <!DOCTYPE.ee>
This tag defines the document type and HTML version.
2 < html >
This tag encloses the complete HTML document and mainly comprises
of document header which is represented by
< head > ... < /head> and document body which is represented by
< body > < /body> tags.
3
< head > This tag represents the document's header which can keep
other HTML tags like < title>, < link > etc.