RK Intershipl
RK Intershipl
MANAGEMENT SYSTEM
Raghavendra K
(1AH16CS031)
WebLogik 29/8, Mirza Hyder Ali Street Royapettah, Chennai - 600 014 India.
Introduction
Objectives
Conclusion
Introduction
Web technology is the establishment and use of mechanisms that
make it possible for different computers to communicate and share
resources .
Web technology relates to the interface between web servers and
their clients. It includes markup languages, programming interfaces
and languages, and standards for document identification and display.
Why Web technology is important?
• Digital Advertising.
• E-Commerce
Basic Overview:
HTML V5 : Hypertext Markup Language (HTML) is the standard markup language designed by
WHATWG in 1993, for viewing documents in a web browser. HTML describes the structure of a web
page semantically.
Web browsers receive HTML documents from a web server or from local storage and render the
Code Sample:
<!DOCTYPEhtml>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
Casading Style Sheets V3: CSS is a Style Sheet language used for describing the
presentation of a document written in a markup language like HTML. CSS is a
cornerstone technology of the World Wide Web, alongside HTML and JavaScript
Code Sample:
<DOCTYPE html>
<html>
h1{
color:red;
font-size:20px;
}
<body>
<h1> HI ACSCE</h1>
</body>
</html>
JavaScript V5: JavaScript is high-level, often just-in-time compiled,
and multi-paradigm.It has curly-backet syntax, dynamic typing,
prototype-based object-orient and first-class functions
Alongside HTML and CSS, JavaScript is one of the core technologies
of the World Wide Web. JavaScript enables interactive web pages
and is an essential part of web applications.
Code Sample:
<script>
document.write("Hello");
</script>
Steps in displaying webpages in browsers:
1. A request is made when a link is clicked.
3. The web browser uses the page resources to build the page.
page begins.
2. The Document :When a linked is clicked a request is made for a
document. The document is the webpage file, which is just a text file. It is
located on a web server
This file is often of the type ".html“, The file gets requested using a
system called HTTP.
3. The Response :The web server then provides the file to the web
browser. The response is simply the browser receiving the thing it had
requested.
Parsing :Once the browser has received the document it reads it.
When a computer reads a file looking for more resources,then it is
called "parsing“.
The web browser looks at the entire HTML document and looks for
any css, javascript and images that are referenced by the page. If
resources are found in the HTML the web browser then requests
webserver and particular resources will be downloaded by the
browser.
Build :Once the web browser has the required resources it can start
building the page.
The way a web browser builds the page is by combining the
information found in the document (the original HTML file) and the
information found in the resources.
There are basically three steps that the browser takes to build a page.
• Build the DOM
• Build the CSSOM
• Build the Render Tree
The render tree essentially takes the DOM and the CSSOM and
combines them to create a full map of how the page will actually be
laid out and painted.
4. The Render :After all of the above steps have been performed the
browser can now finally put something up on the screen.
• There are two main things that happen here
• Layout / Reflow
Now that all the calculations are done, the browser can actually
display something on the screen. This is called the paint. In this
final stage the browser will convert each node in the render tree to
actual pixels on the screen.
Display of webpages
Flow Diagram of Student Information Management
System
Objectives
Student Information Management System deals with all kind of
student’s academic related report, course details, batch details
and other resource related details too. It tracks all the details of
a student from the day one to the end of his course
The Admin has overall control over the system whether to declare result
friendly and simple to view and save the result in offline mode and result
• This system allows for storing large amount of data under single
database and it is protected with admin credentials