25
An Introduction to Web Technologies Ankit Jain 4 th Year, Computer Engg Head – DCETECH.COM

Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

  • Upload
    newbu

  • View
    1.232

  • Download
    2

Embed Size (px)

Citation preview

Page 1: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

An Introduction to Web Technologies

Ankit Jain4th Year, Computer EnggHead – DCETECH.COM

Page 2: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Internet and WWW

• Inter-network and World Wide Web

• Interlinked hypertext documents accessed using HTTP Protocol

• Client - Server architecture

Page 3: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Why Internet?Use of internet

• Email• Social Networking, Chat• Information sharing• Getting updates – News around the world• Entertainment – Games, Videos and Music• Virtual classrooms• Remote Access• Online Jobs

Page 4: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Why Websites?Offline Apps vs. Online Apps

ONLINE APPS• No need to install• Just login and use• Available from anywhere where Internet

connection is available• Operating system independent• No piracy issues

Page 5: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Why Websites?Offline Apps vs. Online Apps

OFFLINE APPS• Ease of use• Generally have more features• Easier to develop but difficult to update

Page 6: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Technologies OverviewList of Technologies

Client Side Technologies• HTML, CSS, JavaScript, VBScript• XHTML, DHTML, WML, AJAX• FLASH

Server Side Technologies• ASP, PHP, Perl, JSP• ASP.NET, Java• MySQL, SQL Server, Access

Page 7: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Technologies OverviewList of Technologies

Some More Advanced Technologies• XML, XSLT, RSS, Atom• X-Path, XQuery, WSDL• XML-DOM, RDF• Ruby on Rails, GRAIL Framework• REST, SOAP

Page 8: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

How to choose a Technology?

Depends on:• What is the type of content?• Who is your audience?• Who will modify your content?• What are your Future Plans?• Availability of technology?• Your previous experience?• Portability and Data sharing

Page 9: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

HTMLHyper Text Markup Language

• Documents– Document = page = HTM file = topic– Content (text, images)– Tags (display commands)

• Other terms– Window: browser display window– URL: Uniform Resource Locator– Hyperlink: hypertext jump to a resource– Resource: URL, image, mailto, external file

Page 10: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

HTML

HTML pages are tag-based documents• Really plain ASCII text files• Don't look like documents they represent• Tags indicate how processing program should

display text and graphics• Processed by browsers “on the fly”• Tags usually appear in pairs• Most have reasonable names or mnemonics• Most can be modified by attributes/values

Page 11: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

That’s how this…

<html> <head><title>Welcome onboard</title></head> <body bgcolor=“#f4f4f4"> <h1>Welcome</h1> <img src=“dcetech.gif" width=“222" height=“80" alt=“DCETECH"

BORDER="0“ /> <h2>A Message from the Speaker </h2> <p><font color=red>Good evening! Thank you for coming

here!</font></p> <p>Hello and welcome to Web technologies workshop! I'm <b>Ankit

Jain,</b>, 4th year Computer Engg <a href=“http://dcetech.com"> Head DCETECH.COM </a>. Dcetech is a student portal and only one of its kind in India.It is not only a technical oriented site which caters only for engineers but its for students from any background! Also students from any educational institution can register and join Dcetech. </p>

. . .</body></html>

Page 12: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Turns into this…

Page 13: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Some HTML Tags example

• START TAG END TAG• <HTML> </HTML>• <HEAD> </HEAD>• <TITLE> </TITLE>• <BODY> </BODY>• <H1>, <H2>, ... </H1>, </H2>, ...• <IMG ...> </IMG> (optional)• <A ...> </A>• <P> </P> • <BR/> (none; "empty" tag)• <OL> </OL>• <UL> </UL>• <LI> </LI>

Page 14: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Basic Structure of HTML document Example of basic tag positioning

<html><head><title>Title bar text</title></head><body><p>Look, I'm a paragraph!

</p></body></html>

Page 15: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Attributes and Values

• Properties, traits, or characteristics that modify the way a tag looks or acts– Usually in pairs: <body bgcolor="teal">– Sometimes not: <option selected>

• Most HTML tags can take attributes– Format of value depends on attribute– width="150" ... href="page3.htm" notwidth="page3.htm" ... href="150"

Page 16: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Tables

<table border="1"> <tr> <td>Row 1, Cell 1</td> <td>Row 1, Cell 2</td> </tr> <tr> <td>Row 2, Cell 1</td> <td>Row 2, Cell 2</td> </tr></table>

Row 1, Cell 1 Row 1, Cell 2Row 2, Cell 1 Row 2, Cell 2

Page 17: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

CSS

• What CSS Controls– Page background, colors, images, fonts and text,

margins and spacing, headings, positioning, links, lists, tables, cursors, etc.

• W3C intends CSS to "…relieve HTML of the responsibility of presentation."– Translation: "Don't bug us for new tags; change

existing tags & make your own using CSS."

• Idea is to put all formatting in CSS– To that end, many tags are "deprecated" by CSS:

<font>, <basefont>, <center>, <strike>…

Page 18: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Basic CSS Rule

• Rules have very specific parts and syntax– Rules have two basic parts: selector and

declaration– Declaration also has two parts: property and value

– Selector tells the rule what to modify– Declaration tells the rule how to modify it

h2 { font-style : italic ; }

rule

property valueselector declaration

Page 19: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

JavaScript

• What JavaScript isn’t– Java (object-oriented programming language)– A "programmers-only" language

• What JavaScript is– Extension to HTML (support depends on browser)– An accessible, object-based scripting language

• What JavaScript is for– Interactivity with the user:

* input (user provides data to application) * processing (application manipulates data)* output (application provides results to user)

Page 20: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Usage of JS

• Direct insertion into page (immediate)<body><p>Today is <script>document.write( Date() ); </script></p>

• Direct insertion into page (deferred)<head><script>

function dwd() { document.write( Date() ); }</script>

</head>. . .<body>

<p>Today is <script>dwd(); </script></p>

Page 21: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

PHP

• Procedural language– Compare with JavaScript which is event-driven

• C-like syntax - { } ;• Extensive Function Library• Good Web-server integration

– Script embedded in HTML– Easy access to form data and output of HTML

pages• Not fully object-oriented

– Java is fully object oriented – all functions have to be in a class

– In PHP, classes are additional but quite simple to use

Page 22: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

PHP

– PHP scripts are essentially HTML pages with the occasional section of PHP script.

– PHP script is enclosed in the tag pair:• <?php print date(“H:I”) ?>

Page 23: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

PHP - C Like Language

• Free format - white space is ignored • Statements are terminated by semi-colon ; • Statements grouped by { … } • Comments begin with // or a set of comments /* */ • Assignment is ‘=’: $a=6• Relational operators are ,< , > == ( not a single equal) • Control structures include if (cond) {..} else { }, while (cond)

{ .. } , for(startcond; increment; endcond) { } • Arrays are accessed with [ ] : $x[4] is the 5th element of

the array $x – indexes start at 0 • Associative Arrays (hash array in Perl, dictionary in Java) are

accessed in the same way: $y[“fred”] • Functions are called with the name followed by arguments in

a fixed order enclosed in ( ) : substr(“fred”,0,2) • Case sensitive - $fred is a different variable to $FRED

Page 24: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Conclusion & Future Work

• Most Web pages – remote or local – are a combination of those technologies– Raw content, placed inside…– HTML tags, formatted with…– CSS rules, interactivity produced by…– JavaScript scripts on Clients sides and…– PHP scripts on server sides

• Newer technologies like DHTML, XHTML, and XML are based on these– A little knowledge now can prepare you for new

technologies!

Page 25: Introduction_Web_tech_22Aug.ppt 510KB Aug 23 2007 10:12

Questions