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
127 changes: 127 additions & 0 deletions 728.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
<!DOCTYPE html>
<html>
<head>
<title>College Website Proposal</title>
<style>
body{
font-family: Arial, sans-serif;
background:#f4f4f4;
margin:0;
padding:0;
}
.container{
width:80%;
margin:20px auto;
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 0 10px gray;
}
h1,h2{
text-align:center;
color:#003366;
}
table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}
table, th, td{
border:1px solid black;
}
th{
background:#003366;
color:white;
}
th, td{
padding:10px;
text-align:left;
}
ul{
line-height:1.8;
}
.footer{
text-align:center;
margin-top:30px;
color:#555;
}
</style>
</head>
<body>

<div class="container">

<h1>College Website Proposal</h1>

<h2>Prepared By</h2>
<p><b>Name:</b> Yashvi Jasani</p>

<h2>Project Overview</h2>
<p>
This proposal describes the development of a modern college website that
provides information about courses, admissions, faculty, events, notices,
and contact details. The website will be user-friendly and responsive.
</p>

<h2>Objectives</h2>
<ul>
<li>Provide college information online.</li>
<li>Display courses and admission details.</li>
<li>Publish notices and events.</li>
<li>Improve communication with students.</li>
<li>Allow easy contact with the college.</li>
</ul>

<h2>Website Pages</h2>
<table>
<tr>
<th>Page</th>
<th>Description</th>
</tr>
<tr>
<td>Home</td>
<td>Welcome message and latest updates.</td>
</tr>
<tr>
<td>About Us</td>
<td>College history, vision, and mission.</td>
</tr>
<tr>
<td>Courses</td>
<td>Details of available programs.</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>Contact</td>
<td>Address, phone number, and email.</td>
</tr>
</table>

<h2>Technologies Used</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>

<h2>Conclusion</h2>
<p>
The proposed college website will provide accurate information, improve
communication, and create a professional online presence for the college.
</p>

<div class="footer">
<p><b>Prepared By: Yashvi Jasani</b></p>
</div>

</div>

</body>
</html>