CSS 1
CSS 1
ON
“ COLLAGE WEBSITE ”
SUBMITTED BY
Sanjivani Pratisthan’s
S. P. I. T. POLYTECHNIC, KURUND
2023 – 2024
Sanjivani Pratisthan’s
S. P. I. T. POLYTECHNIC, KURUND
CERTIFICATE
This is to certify that a micro project work entitled
“ COLLAGE WEBSITE ”
In the present times Internet and automation is one of the vital things which we want
to adopt for efficiently. College website consists of many webpages and implement
different kinds of menus and scrollbars. In this we have implemented dynamic menus
and done the styling and validation part using JavaScript. Java Script is always one of
the languages which seems to be the best option for validation in webpages like form
validation, menu validation, events validations etc. A college management system
enables colleges and higher education to manage enrollment, admissions, students,
faculty, attendance, fees, scheduling, assignments, grades and library of the
institution. The College ERP allows you to manage the entire academic and
administrative processes hassle free. Each pages are interlinked to each other. When
we click on the particular menus it will redirect to corresponding pages according to
the specified destination.
Introduction
Such web pages use presentation technology called rich interfaced pages.
Client-side scripting languages like JavaScript or Action Script, used for
Dynamic HTML (DHTML) and Flash technologies respectively, are
frequently used to orchestrate media types (sound, animations, changing
text, etc.) of the presentation. Client-side scripting also allows the use of
remote scripting, a technique by which the DHTML page requests
additional information from a server, using a hidden frame, XML Http
Requests, or a Web service.
We have created pages like home, About, Facilities, Contact and Gallery.
Form validation normally used to occur at the server, after the client had
entered all the necessary data and then pressed the Submit button. If the
data entered by a client was incorrect or was simply missing, the server
would have to send all the data back to the client and request that the
form be resubmitted with correct information. This was really a lengthy
process which used to put a lot of burden on the server.
We have used HTML (Hyper Text Markup Language) for our front end
design. For backup functions we have used PHP language and Java Script
for form validation. Why is this necessary to create this kind of website to
improve the experience the students and to improve the user experience
we have used or create or separate sections and in different sections we
have used different elements of java script?
Pull down menus is a kind of menu in which you have defined a menu in
which one menu and after that sub menu is created. In poll down menu
one is the main menu and the others are the sub menu. When we do
mouse over the menu tab then instantly it displays the sub menu items
just below the main menu. We have done validation in the menu like in
which we have validate the menu like one click and double click.
Dynamically changing the menu means the items present in the menu are
changing automatically. Following is a JavaScript example in which two
menus are placed – one for category of students in the class and other
names of facilities in the college website.
The popup menu contains lower level menu items that are associated with
the top-level menu item. The pop menu appears as you move mouse over
each menu items. Sometimes there is limited space on the web page for
displaying all the menu options. Then in such case only limited menu
options are displayed and remaining options can be accessed by scrolling
left or right.
Implementation
HTML Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>S.P.I.T.Polytechnic,kurund</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Free HTML Templates" name="keywords" />
<meta content="Free HTML Templates" name="description" />
<body>
<!-- Navbar Start -->
<div class="container-fluid bg-light position-relative shadow">
<nav class="navbar navbar-expand-lg bg-light navbar-light py-3 py-lg-0 px-0 px-lg-5">
<a href="" class="navbar-brand font-weight-bold text-secondary"style="font-size: 50px">
<img src="C:\Users\asmit\OneDrive\Documents\ProAzure_CK\S.P.I.T.
College,Kurund\kidkinder-1.0.0\img\download.jpg "width="180" height="170">
<span class="text-primary">S.P.I.T.Polytechnic,kurund</span></a>
<button type="button"class="navbar-toggler"data-toggle="collapse"
data-target="#navbarCollapse" >
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between"id="navbarCollapse" >
<div class="navbar-nav font-weight-bold mx-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="department.html" class="nav-item nav-link">Department</a>
<a href="staff.html" class="nav-item nav-link">Staff</a>
<a href="admission.html" class="nav-item nav-link">Admission</a>
<a href="activity.html" class="nav-item nav-link">Activity</a>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
</div>
</nav>
</div>
<!-- Navbar End -->
<div class="col-lg-5">
<div class="card border-0">
<div class="card-header bg-secondary text-center p-4">
<h1 class="text-white m-0">Registration</h1>
</div>
<div class="card-body rounded-bottom bg-primary p-5">
<form>
<div class="form-group">
<input type="text"class="form-control border-0 p-4"placeholder="Your Fullname"
required="required" />
</div>
<div class="form-group">
<input type="email" class="form-control border-0 p-4"placeholder="Your Email"
required="required"/>
</div>
<div class="form-group">
<input class="form-control border-0 p-4"placeholder="Phone No."required="required"/>
</div>
<div class="form-group">
<select class="custom-select border-0 px-4"style="height: 48px";>
<option selected>Select A Department</option>
<option value="1">Civil Engineering</option>
<option value="2">Computer Engineering</option>
<option value="3">Machanical Engineering</option>
<option value="4">Eletrical Engineering</option>
</select>
</div>
<div>
<button class="btn btn-secondary btn-block border-0 py-3" type="submit">Register
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Registration End -->
<!--/*** This template is free as long as you keep the footer author’s credit link/attribution
link/backlink. If you'd like to use the template without the footer author’s credit link/attribution
link/backlink, you can purchase the Credit Removal License from "https://htmlcodex.com/credit-
removal". Thank you for your support. ***/-->
Designed by
<a class="text-primary font-weight-bold" href="https://htmlcodex.com">HTML Codex</a>
<br />Distributed By:
<a href="https://themewagon.com" target="_blank">ThemeWagon</a>
</p>
</div>
</div>
<!-- Footer End -->