SlideShare ist ein Scribd-Unternehmen logo
1 von 39
PROJECT REPORT
on
JSP ,AJAX &Web
development
Overview
 Introduction of JSP
 Why we learn JSP?
 Architecture of JSP
 JSP Execution Procedure
 What is a JSP Page?
 Example of JSP Page
 Scripting Elements in JSP
 Predefined Variables-Implicit Objects in JSP
Introduction: what is JSP?
 Java Server Pages(JSP) is a server side technology that
simplifies the developing of dynamic web sites.
 It is a technology developed by Sun Microsystems in
1999.
 JSP pages are HTML pages with embedded code that
allows to access data from Java code running on the
server.
 JSP technology is a key component in the Java2 platform
enterprise edition.
Why we learn JSP?
 coding in JSP is easy.
 Reduction in the length of code.
 Connection to database is easier.
 Make interactive websites.
 Portable , Powerful , flexible and easy to
maintain.
 Easier to read data from user.
 Tracking the user.
Architecture of JSP
JSP Execution Procedure
What is JSP Page?
A JSP page is a page created by the web developer that
include JSP technology specific and custom tags,in
combination with other static tags.A JSP page has the
extension .jsp or .jspx this signals to the web server that
the JSP engine will process elements on this page.using
the web xml deployment descripter,additional extensions
can be associated with the JSP engine.
Simple JSP page
<html>
<h1> First JSP Page </h1>
<body>
<% out.println(“welcome”);%>
</body>
</html>
Scriping Elements in Jsp
1. Scriptlet Tag in JSP
 In JSP,Java code can be written inside the JSP page
using Scriptlet tag.
Syntax:
<% java source code %>
Example:
<html>
<body>
<% out.print(“Hello”); %>
</body>
</html>
2.Expression Tag
 Code placed within expression tag is written to the output stream
of the response.So,no need to write out.print() to write data.
Syntax:
<%= Statement %>
Example:
<html>
<body>
<%= “Hello world” %>
</body>
</html>
3.Declaration Tag
 Is used to declare fields and methods.The code written inside this
tag is placed outside the service() method of auto generated
servlet.
Syntax:
<%! Statement %>
Example:
<html>
<body>
<%! int data=60; %>
<%= “value is: “ +data %>
</body>
</html>
Session implicit object
 The Java developer can use this object to set , get or remove attribute or to
get session information.
Request implicit object
 Access to information associated with a request.This object is normally used
in looking up parameter values and cookies.
<% String str = request.getParameter(“uname”); %>
Exception implicit object
 This object can be used to print the exception. But it can only be used in error pages.
out implicit object
 For writing any data to the buffer , JSP provides an implicit object names out.
Syntax:
out.print();
Predefined Variable - implicit objects in JSP
Web
Development
Languages
What is HTML?
 HTML stands for Hyper Text Markup Language is the main markup
language for creating web pages and other information that can be
displayed in a web browser.
What is CSS?
CSS stands for Cascading Style Sheets.
Styles define how to display HTML elements.
Its most common application is to style web page written in HTML
and XHTML.
HTML5
 HTML5 is a markup language for structuring and processing
content for the World Wide Web and a core technology of the
internet.
 It extends, improves and rationalises the markup available for
documents, and introduces markup and application programming
interfaces(APIs) for complex web applications.
 For the same reasons, HTML5 is also a potential candidate for
cross-platform mobile applications.
Features of HTML5
 Offline/Storage
 Multimedia
 Graphics
 Semantics and Markup
HTML5 offers new semantic elements to clearly define different
parts of a web page:
Semantic elements = Elements with Meaning
 <header>
 <nav>
 <Section>
 <article>
 <figcaption>
 <figure>
 <footer>
CSS3
 CSS is used to control the style and layout of web pages.
CSS3 Modules:
 CSS3 is split up into “modules”.The old specification has been split
into smaller pieces and new are also added.
 Some of the most important CSS3 modules are.
 Selectors
 Box Model
 Backgrounds and Borders
 Text Effects
 Animations
 2D/3D Transformations
CSS3 Transformation
 In CSS3,we can move ,scale , turn,spin and stretch elements.
A transformation is an effect that change element shape , size and
position.
CSS3 2D Transformation methods:
 translate()
 rotate()
 scale()
 skew()
translate() method-
rotate() method-
scale() method-
CSS3 Borders
 In CSS3 the following border properties are:
border-radius
border-shadow
border-image
Border-radius:
 In CSS3,the border property is used to create rounded corners.
Example:
div{
border:2px solid;
border-radius:25px;
}
AJAX
 Ajax stands for Asynchronous JavaScript and XML.
What is AJAX?
Not a language itself
A group of related exiting technology compiled together or
technique to make web pages feel more responsive.
Makes interactive web pages by providing a way for the web
page to interact with the server.
AJAX is a framework
Why AJAX is important?
 AJAX enables a much better user experience for Web sites and
applications.
 By using AJAX we can load a specific portions of a page that need to be
changed.
 It further reduce network traffic.
The Core Components:
 HTML & CSS- for presenting.
 JavaScript-for local processing.
 Document Object Model(DOM)- to access data inside the page or
to access elements of an XML file on the server.
 XMLHttpRequest object- to read/send data to the server
asynchronously.
XML HttpRequest Object Properties:
Example of Ajax:
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("GET", "ajax_info.txt", true);
xhttp.send();
}
</script>
Process Cycle
Benefits of using AJAX:
 Helps to build fast , dynamic websites.
 Improves sharing of resources: it facilitates to use the power of all
the client computer rather than just a unique server and network.
 Ajax allows to perform processing on client computer(in JavaScript)
with data taken from the server thereby reducing server load by
moving a part of server functionality to client side.
 Ajax can selectively modify a part of a page displayed by the browser
, and update it without the need to reload the whole document with
all images , menus etc. This bridges the gap between desktop
and web applications.
REGISTRATION PAGE:
ADMIN PAGE:
ADMIN TABLE:
Login page:
Hall booking details:
View booking details:
Based on user id:
Based on dates:
Based on hall id:
Based on user id and date:
THANK YOU !!

Weitere ähnliche Inhalte

Ähnlich wie PPT on javascript ajax and css and some points related to server

Developing Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationDeveloping Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationMark Gu
 
Lessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX ExperiencesLessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX Experiencesgoodfriday
 
web development 7.pptx
web development 7.pptxweb development 7.pptx
web development 7.pptxharshit762481
 
Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application developmentzonathen
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overviewskill-guru
 
Using Ajax In Domino Web Applications
Using Ajax In Domino Web ApplicationsUsing Ajax In Domino Web Applications
Using Ajax In Domino Web Applicationsdominion
 
JSP - Java Server Page
JSP - Java Server PageJSP - Java Server Page
JSP - Java Server PageVipin Yadav
 
Online test management system
Online test management systemOnline test management system
Online test management systemPrateek Agarwak
 
e-suap - client technologies- english version
e-suap - client technologies- english versione-suap - client technologies- english version
e-suap - client technologies- english versionSabino Labarile
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep DiveGabriel Walt
 
Ta Javaserverside Eran Toch
Ta Javaserverside Eran TochTa Javaserverside Eran Toch
Ta Javaserverside Eran TochAdil Jafri
 
Overview of atg framework
Overview of atg frameworkOverview of atg framework
Overview of atg frameworkYousuf Roushan
 

Ähnlich wie PPT on javascript ajax and css and some points related to server (20)

Jsp
JspJsp
Jsp
 
Developing Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationDeveloping Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web Application
 
Lessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX ExperiencesLessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX Experiences
 
Lessons
LessonsLessons
Lessons
 
web development 7.pptx
web development 7.pptxweb development 7.pptx
web development 7.pptx
 
Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application development
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overview
 
JavaScript
JavaScriptJavaScript
JavaScript
 
Migration from ASP to ASP.NET
Migration from ASP to ASP.NETMigration from ASP to ASP.NET
Migration from ASP to ASP.NET
 
Using Ajax In Domino Web Applications
Using Ajax In Domino Web ApplicationsUsing Ajax In Domino Web Applications
Using Ajax In Domino Web Applications
 
JSP - Java Server Page
JSP - Java Server PageJSP - Java Server Page
JSP - Java Server Page
 
Online test management system
Online test management systemOnline test management system
Online test management system
 
e-suap - client technologies- english version
e-suap - client technologies- english versione-suap - client technologies- english version
e-suap - client technologies- english version
 
Html5
Html5Html5
Html5
 
Ibm
IbmIbm
Ibm
 
Spatial approximate string search Doc
Spatial approximate string search DocSpatial approximate string search Doc
Spatial approximate string search Doc
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep Dive
 
technology@web
technology@webtechnology@web
technology@web
 
Ta Javaserverside Eran Toch
Ta Javaserverside Eran TochTa Javaserverside Eran Toch
Ta Javaserverside Eran Toch
 
Overview of atg framework
Overview of atg frameworkOverview of atg framework
Overview of atg framework
 

Kürzlich hochgeladen

GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 

Kürzlich hochgeladen (20)

GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 

PPT on javascript ajax and css and some points related to server

  • 1. PROJECT REPORT on JSP ,AJAX &Web development
  • 2. Overview  Introduction of JSP  Why we learn JSP?  Architecture of JSP  JSP Execution Procedure  What is a JSP Page?  Example of JSP Page  Scripting Elements in JSP  Predefined Variables-Implicit Objects in JSP
  • 3. Introduction: what is JSP?  Java Server Pages(JSP) is a server side technology that simplifies the developing of dynamic web sites.  It is a technology developed by Sun Microsystems in 1999.  JSP pages are HTML pages with embedded code that allows to access data from Java code running on the server.  JSP technology is a key component in the Java2 platform enterprise edition.
  • 4. Why we learn JSP?  coding in JSP is easy.  Reduction in the length of code.  Connection to database is easier.  Make interactive websites.  Portable , Powerful , flexible and easy to maintain.  Easier to read data from user.  Tracking the user.
  • 7. What is JSP Page? A JSP page is a page created by the web developer that include JSP technology specific and custom tags,in combination with other static tags.A JSP page has the extension .jsp or .jspx this signals to the web server that the JSP engine will process elements on this page.using the web xml deployment descripter,additional extensions can be associated with the JSP engine.
  • 8. Simple JSP page <html> <h1> First JSP Page </h1> <body> <% out.println(“welcome”);%> </body> </html>
  • 9. Scriping Elements in Jsp 1. Scriptlet Tag in JSP  In JSP,Java code can be written inside the JSP page using Scriptlet tag. Syntax: <% java source code %> Example: <html> <body> <% out.print(“Hello”); %> </body> </html>
  • 10. 2.Expression Tag  Code placed within expression tag is written to the output stream of the response.So,no need to write out.print() to write data. Syntax: <%= Statement %> Example: <html> <body> <%= “Hello world” %> </body> </html>
  • 11. 3.Declaration Tag  Is used to declare fields and methods.The code written inside this tag is placed outside the service() method of auto generated servlet. Syntax: <%! Statement %> Example: <html> <body> <%! int data=60; %> <%= “value is: “ +data %> </body> </html>
  • 12. Session implicit object  The Java developer can use this object to set , get or remove attribute or to get session information. Request implicit object  Access to information associated with a request.This object is normally used in looking up parameter values and cookies. <% String str = request.getParameter(“uname”); %> Exception implicit object  This object can be used to print the exception. But it can only be used in error pages. out implicit object  For writing any data to the buffer , JSP provides an implicit object names out. Syntax: out.print(); Predefined Variable - implicit objects in JSP
  • 14. What is HTML?  HTML stands for Hyper Text Markup Language is the main markup language for creating web pages and other information that can be displayed in a web browser. What is CSS? CSS stands for Cascading Style Sheets. Styles define how to display HTML elements. Its most common application is to style web page written in HTML and XHTML.
  • 15. HTML5  HTML5 is a markup language for structuring and processing content for the World Wide Web and a core technology of the internet.  It extends, improves and rationalises the markup available for documents, and introduces markup and application programming interfaces(APIs) for complex web applications.  For the same reasons, HTML5 is also a potential candidate for cross-platform mobile applications.
  • 16. Features of HTML5  Offline/Storage  Multimedia  Graphics  Semantics and Markup
  • 17. HTML5 offers new semantic elements to clearly define different parts of a web page: Semantic elements = Elements with Meaning  <header>  <nav>  <Section>  <article>  <figcaption>  <figure>  <footer>
  • 18. CSS3  CSS is used to control the style and layout of web pages. CSS3 Modules:  CSS3 is split up into “modules”.The old specification has been split into smaller pieces and new are also added.  Some of the most important CSS3 modules are.  Selectors  Box Model  Backgrounds and Borders  Text Effects  Animations  2D/3D Transformations
  • 19. CSS3 Transformation  In CSS3,we can move ,scale , turn,spin and stretch elements. A transformation is an effect that change element shape , size and position. CSS3 2D Transformation methods:  translate()  rotate()  scale()  skew()
  • 21. CSS3 Borders  In CSS3 the following border properties are: border-radius border-shadow border-image Border-radius:  In CSS3,the border property is used to create rounded corners. Example: div{ border:2px solid; border-radius:25px; }
  • 22. AJAX  Ajax stands for Asynchronous JavaScript and XML. What is AJAX? Not a language itself A group of related exiting technology compiled together or technique to make web pages feel more responsive. Makes interactive web pages by providing a way for the web page to interact with the server. AJAX is a framework
  • 23. Why AJAX is important?  AJAX enables a much better user experience for Web sites and applications.  By using AJAX we can load a specific portions of a page that need to be changed.  It further reduce network traffic.
  • 24. The Core Components:  HTML & CSS- for presenting.  JavaScript-for local processing.  Document Object Model(DOM)- to access data inside the page or to access elements of an XML file on the server.  XMLHttpRequest object- to read/send data to the server asynchronously.
  • 25. XML HttpRequest Object Properties:
  • 26. Example of Ajax: <script> function loadDoc() { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.getElementById("demo").innerHTML = this.responseText; } }; xhttp.open("GET", "ajax_info.txt", true); xhttp.send(); } </script>
  • 28. Benefits of using AJAX:  Helps to build fast , dynamic websites.  Improves sharing of resources: it facilitates to use the power of all the client computer rather than just a unique server and network.  Ajax allows to perform processing on client computer(in JavaScript) with data taken from the server thereby reducing server load by moving a part of server functionality to client side.  Ajax can selectively modify a part of a page displayed by the browser , and update it without the need to reload the whole document with all images , menus etc. This bridges the gap between desktop and web applications.
  • 38. Based on user id and date: