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

Modern_Perspectives_Complete_Report

The project report details the development of a web-based art gallery and booking system titled 'Modern Perspectives Exhibition' by Diya, aimed at enhancing the accessibility and interactivity of art exhibitions. It outlines the project's objectives, system design, implementation, and future enhancements, while also acknowledging guidance and support received during its creation. The website features sections for artwork display, artist profiles, event scheduling, and a user-friendly booking form processed via PHP.

Uploaded by

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

Modern_Perspectives_Complete_Report

The project report details the development of a web-based art gallery and booking system titled 'Modern Perspectives Exhibition' by Diya, aimed at enhancing the accessibility and interactivity of art exhibitions. It outlines the project's objectives, system design, implementation, and future enhancements, while also acknowledging guidance and support received during its creation. The website features sections for artwork display, artist profiles, event scheduling, and a user-friendly booking form processed via PHP.

Uploaded by

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

PROJECT REPORT

ON
MODERN PERSPECTIVES EXHIBITION
(Web-Based Art Gallery and Booking System)

Submitted By:

Diya

Diploma in Computer Science

Ambedkar DSEU Shakarpur Campus 1

Under the guidance of

Mr./Ms. XYZ

Submitted in partial fulfillment of the requirements for the award of

Diploma in Computer Science

Session: April 2025


CERTIFICATE

This is to certify that the project entitled “Modern Perspectives Exhibition – A Web-
Based Art Gallery and Booking System”
submitted by Diya in partial fulfillment for the award of the Diploma in Computer
Science at Ambedkar DSEU Shakarpur Campus 1
during the session April 2025 is a record of original work carried out by her under my
supervision.

Project Guide: Mr./Ms. XYZ

Date: _____________
Acknowledgment

I would like to express my deep gratitude to my project guide, Mr./Ms. XYZ, for their
patient guidance, enthusiastic encouragement,
and useful critiques during the planning and development of this project.

I would also like to thank the faculty members of the Department of Computer Science,
Ambedkar DSEU Shakarpur Campus 1, for their support.
Finally, I thank my parents and friends for their continuous encouragement and support.
Abstract

This project aims to build a responsive and visually engaging website for an art
exhibition event. It includes sections such as an artwork gallery, artist profiles, event
schedule, and a booking form. The booking form collects user details and is processed
using PHP. This project demonstrates the integration of front-end and server-side
development, offering a real-world application of web technologies.
Table of Contents

1. Introduction .................................................. 6
2. Objective of the Project ....................................... 7
3. System Analysis ................................................ 8
4. Tools and Technologies Used .................................... 9
5. System Design .................................................. 10
6. System Implementation .......................................... 11
7. Output Screenshots ............................................. 12
8. Testing ........................................................ 13
9. Future Scope ................................................... 14
10. Advantages & Limitations ...................................... 15
11. Conclusion .................................................... 16
12. Code Snippets ................................................. 17–18
13. References .................................................... 19
14. Appendix ...................................................... 20
1. Introduction

Art is one of the most impactful forms of expression and creativity. With the rise of
digital platforms, the way art is consumed and appreciated has evolved. This project is a
modern initiative to showcase contemporary artworks and artist profiles through a web-
based platform that simulates a physical exhibition environment while also offering event
booking capabilities.

2. Objective of the Project

- To provide an online platform for displaying artwork and artist information.


- To simplify the visitor booking process for exhibitions.
- To make the art gallery accessible and interactive using modern web technologies.
3. System Analysis
This section outlines the requirements and feasibility of the project. The Modern
Perspectives Exhibition website is designed for users to explore artwork, learn about
artists, and book visits to the exhibition.

System Requirements:
- Users: General visitors who want to explore and book.
- Admin (optional future scope): Manage artists and artwork.

Feasibility:
- Technically feasible with basic web technologies.
- Economically feasible due to low hosting/development cost.
- Operationally feasible as it fulfills user needs efficiently.
4. Tools and Technologies Used
Front-End:
- HTML5 – Structure of the website.
- CSS3 – Styling and layout.

Back-End:
- PHP – Handles form submission.

Others:
- Google Fonts – For better typography.
- Visual Studio Code – Used as code editor.
- Browser (Chrome/Edge) – For testing.
5. System Design
The website is designed with sections:
- Gallery: Uses grid layout to display artworks with hover effects.
- Artist Profile: Images with captions and brief bios.
- Event Details: Table with date, time, venue, and fees.
- Booking Form: Captures user details.

Screenshots and diagrams illustrating this layout can be added here.


6. System Implementation
HTML and CSS are used to structure and style the website. register.php is used to handle
form data from the booking form.

register.php receives the data using POST method. Although the backend code isn't
detailed here, it would typically involve:
- Retrieving form inputs.
- Validating the inputs.
- Storing in a database or emailing to the organizer.

Security measures like form validation and sanitation should be implemented to prevent
misuse.
7. Output Screenshots
[Insert screenshots of the homepage, artwork gallery, artist section, event details, and
booking form.]

Each section of the website is user-friendly, with responsive design that adjusts to
different screen sizes.
8. Testing
The project was tested for:
- Browser Compatibility (Chrome, Firefox, Edge)
- Mobile Responsiveness (via developer tools)
- Form Validation (Required fields, correct data types)

All components were functioning correctly during the tests.


9. Future Scope
- Add admin panel to manage events and artworks.
- Integrate payment gateway for ticket booking.
- Allow registered users to rate or comment on artwork.
- Connect with a database to save bookings.
- Make the website multilingual.
10. Advantages & Limitations
Advantages:
- Easy to use and accessible.
- Visually engaging for users.
- Works on both desktop and mobile devices.

Limitations:
- No backend database connectivity in current version.
- No admin management system.
- No real-time booking updates or confirmation.
11. Conclusion
The Modern Perspectives Exhibition website fulfills its aim of being a virtual exhibition
space that bridges the gap between traditional art viewing and the digital world. It offers a
smooth, interactive user experience and is open to enhancement for future versions.
12. Code Snippets (HTML, CSS, PHP)
HTML Snippet:
<form action="register.php" method="post">
<input type="text" name="name" required>
<input type="email" name="email" required>
<button type="submit">Submit</button>
</form>

CSS Snippet:
.artwork {
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
transition: all 0.4s ease;
}

PHP Snippet:
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = $_POST["name"];
$email = $_POST["email"];
// Process data
}
?>
13. References
1. W3Schools – https://www.w3schools.com/
2. MDN Web Docs – https://developer.mozilla.org/
3. Google Fonts – https://fonts.google.com/
4. Stack Overflow – https://stackoverflow.com/
14. Annexure / Appendix
Annexure A: Source Code Files
- index.html
- style.css
- register.php

Annexure B: Screenshots
- Homepage layout
- Gallery section
- Booking form layout

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy