Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
138 changes: 138 additions & 0 deletions 716.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>College Website Proposal</title>

<style>
body{
font-family: Arial, sans-serif;
background:#f4f4f4;
margin:0;
padding:20px;
}
.container{
width:80%;
margin:auto;
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.2);
}
h1,h2{
text-align:center;
color:#003366;
}
table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}
table,th,td{
border:1px solid black;
}
th{
background:#003366;
color:white;
padding:10px;
}
td{
padding:10px;
}
ul{
line-height:1.8;
}
footer{
text-align:center;
margin-top:20px;
color:#555;
}
</style>
</head>
<body>

<div class="container">

<h1>College Website Proposal</h1>
<h2>Prepared By: Hitesh Chaurasiya</h2>

<h3>Project Overview</h3>
<p>
This proposal presents the design and development of a modern
college website that provides information about admissions,
courses, faculty, events, and student services.
</p>

<h3>Project Objectives</h3>
<ul>
<li>Provide complete college information.</li>
<li>Display courses and departments.</li>
<li>Online admission details.</li>
<li>Student login and notice board.</li>
<li>Contact and feedback form.</li>
</ul>

<h3>Website Modules</h3>

<table>
<tr>
<th>Module</th>
<th>Description</th>
</tr>

<tr>
<td>Home</td>
<td>Welcome page with college highlights.</td>
</tr>

<tr>
<td>About Us</td>
<td>College history, vision and mission.</td>
</tr>

<tr>
<td>Courses</td>
<td>List of available courses.</td>
</tr>

<tr>
<td>Admissions</td>
<td>Admission process and eligibility.</td>
</tr>

<tr>
<td>Faculty</td>
<td>Information about teachers.</td>
</tr>

<tr>
<td>Gallery</td>
<td>Photos and videos of campus.</td>
</tr>

<tr>
<td>Contact</td>
<td>Address, phone number and email.</td>
</tr>

</table>

<h3>Technology Used</h3>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>PHP</li>
<li>MySQL</li>
</ul>

<footer>
<p><b>Prepared By:</b> Hitesh Chaurasiya</p>
<p>© 2026 College Website Proposal</p>
</footer>

</div>

</body>
</html>