Final Css Suraj Mule
Final Css Suraj Mule
GOVERNMENT POLYTECHNIC,BEED
[Institute Code:0032 ]
1
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION,MUMBAI
CERTIFICATE OF MICROPROJECT
Exam
Roll
Enrollment Name of Student Title of Microproject
No.
No.
Seal of
institute
2
Teacher Evaluation Sheet
Name of Student :- Mule Suraj Parmeshwar Enrollment No :- 2200320254
Programe: Computer Technology Semester :- CM5I
Course Title & Code :- Client Side Scripting Language (22516) Roll no :- 1750
Course Outcomes :-
a. Understanding of Restaurant Operations and Management Processes
b. Proficiency in Software Development for Hospitality
c. Ability to Implement Database and Data Management Solutions
1 Presentation
2 Viva
Total Marks Out of (4)
Dated Signature…………………………………………………………………………
3
Annexure –I
Part – A Micro-Project Proposal
(Format for Micro-Project Proposal A about 2-3 pages)
Aims:
1. Room Management
Track room availability (occupied, vacant, reserved) and types (single, double, suite).
3. Guest Management
Collect and store guest information, including personal and contact details.
Calculate room charges, taxes, and any additional services (room service, laundry, etc.).
Benefits:
Step 5: Listing the stationary items required for project along with budget. Everyone will
give stationary list required for report writing.
Step 8: Printing/Drawing.
Printing or drawing will be done and shown to project guide
Step 9: Explanation/Preparation.
During oral/vi-va project will be explained.
6
5.0 Action Plan (Sequence and time required for major activity)
Name of
Sr. Planned Planned
Details of activity Responsible Team
No. Start date Finish date
Members
1 Collecting different formats 06/03/2024 07/01/2024 Mule Suraj
2 Finalization of formats in collaboration 09/01/2024 11/01/2024 Mule Suraj
3 Finalizing topic title 13/01/2024 14/01/2024 Mule Suraj
4 Writing a Code of Project 20/01/2024 01/02/2024 Mule Suraj
Searching information of related a Mule Suraj
5 03/02/2024 07/03/2024
topic
Arrange the Information in The MS Mule Suraj
6 09/03/2024 20/03/2024
Word
7 Prepare a Report of Micro-Project 25/03/2024 03/04/2024 Mule Suraj
8 Taking Print 05/04/2024 11/04/2024 Mule Suraj
6.0 Resources Required (major resources such as raw material, some machining facility,
software etc.)
S. Name of
Specifications Qty Remarks
No. Resource/material
1 Processor: Intel(R) Core(TM) i5-
Computer 12450H CPU @ 2.00GHz 2.00 GHz 01
Ram: 16 GB
Operating System Windows 12 -
2 MS Word For Writing a Report -
3 Google Chrome Browser For Searching Information -
4 Printer Taking Print 01
7
Part – B Micro-Project Report
(Outcomes after Execution) Format for Micro-Project Report (Minimum 6 pages)
Title of Micro-Project:
1.0 Rationale
(Importance of the project, in about 30 to 50 words. This is a modified version of the
earlier one written after the work)
Aims:
1. Understanding of Restaurant Operations and Management Processes
Gain insight into essential Restaurant operations such as room booking, reservations,
guest management, billing, and housekeeping.
Develop skills in programming languages and database management to build and manage
Restaurant management systems.
Learn to design and implement relational databases to store and manage guest, booking,
room, and financial data.
Understand data normalization, data retrieval, and data security practices specific to
8
Benefits:
1. Enhanced Efficiency and Productivity
Automation of routine tasks, such as reservations, billing, and room allocation, reduces
manual labor, allowing staff to focus on customer service.
Faster check-ins and check-outs make for a smoother experience, reducing wait times
and improving guest satisfaction.
2. Improved Guest Experience
Personalized services based on guest history and preferences create a more tailored,
enjoyable experience.
Convenience through online booking, faster service, and easy billing makes interactions
seamless for guests.
3. Centralized Data Management
Unified storage of guest, booking, and payment information enables easy access and real-
time updates across departments.
Better organization and retrieval of data allow staff to access needed information quickly,
improving service quality.
4. Enhanced Inventory and Resource Management
Tracking usage of inventory (linens, toiletries, minibar items) ensures stock availability,
preventing shortages.
Budgeting and restocking become easier with detailed usage data, helping control costs
and reduce waste.
3.0 Course Outcomes Achieved (Add to the earlier list if more COs are addressed)
Websites:
1) https://p-Restaurant booking.onrender.com/listings
9
5.0 Actual Methodology Followed.
Step 5: Listing the stationary items required for project along with budget.
Everyone was told to prepare stationary list required for report writing and information
collection and keep ready budget for it.
Step 6: Discussion of budget in group and finalize the amount.
In the next week every group members discussed their views and budget was finalized.it was
Rs 50 each and it was told budget of group should not exceed than the above amount.
Step 7: Collection of photos and information/contents.
Every group member will collected their data from different website, books and from personal
visit to industry and gave it to project guide for proof reading. After proof reading the data
along with photo were be finalized and every group member started their job.Information
collected and included in this report
Step 8: Printing/Drawing.
We all decided to make report in print format,one member took printout of report,it was shown to
project guide by every member and collected tips for presentation.
10
6.0 Actual Resources Used (Mention the actual resources used).
Processor: i5
1 Computer 01
Ram:16 GB
For
2 Google Understanding -
the Project.
Taking Print of
3 Printer -
soft copy
Through this microproject the following things are learnt and the skill developed by the group
1. The concept of project understood.
2. The structure and requirement of proposal and report understood.
3. The necessity of team work is understood.
4. What is the role of group leader and team member? It well understood.
5. The importance of time management and good communication skill is understood.
6. How to search information and use of different online tools came to know.
7. The writing in English skill is developed.
8. The new words are collected.
9. The computer access skill is developed.
10.Able to tackle and solve the problem arised due to miscommunication and
misunderstanding.
11.The decision making ability is developed but needed good cooperation.
11
Code :-
Restaurant Management System :
HTML CODE :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<header>
</header>
<section id="menu">
<h2>Our Menu</h2>
<div class="menu-item">
<p>Pizza</p>
<p class="price">$10.00</p>
</div>
<div class="menu-item">
<p>Pasta</p>
<p class="price">$8.00</p>
</div>
12
<div class="menu-item">
<p>Burger</p>
<p class="price">$7.00</p>
</div>
</section>
<section id="order">
<h2>Your Order</h2>
<ul id="order-list"></ul>
</section>
<section id="reservation">
<h2>Reservation</h2>
<form onsubmit="makeReservation(event)">
<labe
13
CSS CODE :
*{
box-sizing: border-box;
margin: 0;
padding: 0;
body {
background-color: #f4f4f4;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
header {
background-color: #333;
color: #fff;
width: 100%;
padding: 10px;
text-align: center;
14
section {
background-color: #fff;
width: 100%;
max-width: 600px;
padding: 20px;
margin: 20px 0;
border-radius: 8px;
h2 {
color: #333;
margin-bottom: 10px;
.menu-item, .price {
display: flex;
justify-content: space-between;
padding: 5px 0;
button {
background-color: #333;
color: #fff;
border: none;
padding: 10px;
margin-top: 10px;
15
cursor: pointer;
border-radius: 4px;
width: 100%;
button:hover {
background-color: #555;
form {
display: flex;
flex-direction: column;
margin: 5px 0;
16
JS CODE :
let totalPrice = 0;
totalPrice += price;
displayOrder();
function displayOrder() {
orderList.innerHTML = '';
orderList.appendChild(listItem);
});
document.getElementById("total-price").textContent = totalPrice.toFixed(2);
function clearOrder() {
order = [];
totalPrice = 0;
displayOrder();
}
17
function makeReservation(event) {
event.preventDefault();
reservationList.appendChild(reservationItem);
document.getElementById("name").value = '';
document.getElementById("date").value = '';
document.getElementById("time").value = '';
18