0% found this document useful (0 votes)
15 views

4

Uploaded by

pevaf91620
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

4

Uploaded by

pevaf91620
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

• Retrieve online information via hypertext links, at the click of a button.

• Design forms for conducting transactions with remote services, for use in
searching for information, making reservations, ordering products, etc.

In our project we have used HTML to create web pages like home page, to provide
customer with different foods that are available in our cafeteria.

2.1.2 CSS

CSS is the language for describing the presentation of Web pages, including color,
layout, and fonts. It allows one to adapt the presentation to different types of
devices, such as large screens, Small screens, or printers. CSS is independent of
HTML and can be used with any XML-based mark-up language. The separation of HTML
from CSS makes it easier to maintain sites, share style sheets across pages, and
tailor pages to different environments.

In our project we have used the external style sheets where the CSS styles are
defined in other file and we just need to include that file in our project files by
specifying its location.

2.1.3 JavaScript

JavaScript is a cross-platform, object-oriented scripting language used to make


webpages interactive (ex. having complex animations, clickable buttons, popup
menus, etc.). There are also more advanced server side versions of JavaScript such
as Node.Js which allow you to add more functionality to a website than simply
downloading files (such as real time collaboration between multiple computers).
Inside a host environment (for example, a web browser), JavaScript can be connected
to the objects of its environment to provide programmatic control over them.
Client-side JavaScript extends the core language by supplying objects to control a
browser and its Document Object Model (DOM). For example, client-side extensions
allow an application to place elements on an HTML form and respond to user events
such as mouse clicks, form input, and page navigation. Server-side JavaScript
extends the core language by supplying objects relevant to running JavaScript on a
server. For example, server-side extensions allow an application to communicate
with a database, provide continuity of information from one invocation to another
of the application, or perform file manipulations on a server.

You might also like