0% found this document useful (0 votes)
65 views23 pages

Ku 5Th Sem Assignment - BSIT (TA) - 52 (Web Programmi NG)

This document discusses the key building blocks of the web - HTML and HTTP. HTML is the markup language that defines the structure and layout of web pages. It is not a programming language as it does not perform computations, but rather defines the logical structure of documents. HTTP is the protocol used for communication between web servers and browsers to exchange files and resources over the web. It uses a request-response model where clients make requests that servers respond to. The document then justifies why HTML is called the language of the web by explaining that while not a true programming language, it defines the logical structure and elements of web pages in a way that can be interpreted by any browser on any system. Finally

Uploaded by

Desi Jaat
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
65 views23 pages

Ku 5Th Sem Assignment - BSIT (TA) - 52 (Web Programmi NG)

This document discusses the key building blocks of the web - HTML and HTTP. HTML is the markup language that defines the structure and layout of web pages. It is not a programming language as it does not perform computations, but rather defines the logical structure of documents. HTTP is the protocol used for communication between web servers and browsers to exchange files and resources over the web. It uses a request-response model where clients make requests that servers respond to. The document then justifies why HTML is called the language of the web by explaining that while not a true programming language, it defines the logical structure and elements of web pages in a way that can be interpreted by any browser on any system. Finally

Uploaded by

Desi Jaat
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 23

KU 5TH SEM ASSIGNMENT - BSIT (TA) - 52 (WEB PROGRAMMI NG)

Assignment: TA (Compulsory)

1. What is the meaning of Web? Explain in detail the building elements of web Web is a complex network of international , cross plateform, and cross

cultural communicat ing devices, connected to eachother without any ordering or pattern.There are two most important building blocks of web:HTML and HTTP.

HTML : - HTML stands for Hyper Text Markup Language. HTML is a very simple language usedto describe the logical structure of a document. Actually, HTML is

often called programminglangua ge it is really not. Programming languages are Turing complete, or computable. That

is, programming langua ges can be used to compute something such as the square root of pi or some other such task. Typically programming languages use

conditional branches and loopsand operate on data contained in abstract data structures. HTML is much easier than all of that.HTML is simply a markup language

used to define a logical structure rather than computeanything. HTTP : - HTTP is a request response

type protocol. It is a language spoken between web browser (client software) and a web server (server software) so that can communicate with eachother and exchange files. Now

let us understand how client/server system works using HTTP. Aclient/server system works something like this: A big piece of computer (called a server) sits insome

office somewhere with a bunch of files that people might want access to. This computer runs a software package that listens all day long to requests over the wires.

2. HTML is the Language of the Web Justify the statement HTML is often called a programming language it is really

not. Programming languages are Turing complete, or computable. That is, programming languages can be used to compute something

such as the square root of pi or some other such task. Typically programming languages use conditional branches and loops and operate on data contained in abstract

data structures. HTML is much easier than all of that. HTML is simply a markup language used to define a logical structure rather than compute

anything.For example, it can describe which text the browser should emphasize, which text should be considered body text versus header text, and so forth.The beauty of

HTML of course is that it is generic enough that it can be read and interpreted by a web browser running on any machine or operating system. This is because it only focuses on

describing thelogical nature of the document, not on the specific style. The web browser is responsible for adding style.For instance emphasized text might be bolded in one

browser and italicized in another. it is up to the browser to decide 3. Give the different classification of HTML tags with examples for each category

LIST OF HTML TAGS :Tags for Document Structure HTML HEAD BODY Heading Tags TITLE BASE META STYLE LINK

Block-Level Text Elements ADDRESS BLOCKQUOTE DIV H1 through H6 P

You might also like