0% found this document useful (0 votes)
10 views5 pages

HTML Css Js Project Code

The document outlines a College Student Management System project using HTML, CSS, and JavaScript. It includes an index page with navigation links, a form for adding student details, and basic styling. The JavaScript functionality allows for adding students and displays an alert upon successful addition.

Uploaded by

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

HTML Css Js Project Code

The document outlines a College Student Management System project using HTML, CSS, and JavaScript. It includes an index page with navigation links, a form for adding student details, and basic styling. The JavaScript functionality allows for adding students and displays an alert upon successful addition.

Uploaded by

dipakkhillare040
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

College Student Management System

HTML + CSS + JavaScript Project Code


[Link]
<!DOCTYPE html>
<html>
<head>
<title>College Student Management System</title>
<link rel="stylesheet" href="css/[Link]">
</head>
<body>
<header>
<h1>College Student Management System</h1>
<p>SSB College, Jintur</p>
</header>
<nav>
<a href="[Link]">Home</a>
<a href="[Link]">Add Student</a>
<a href="[Link]">View Students</a>
</nav>
</body>
</html>
[Link]
<form onsubmit="addStudent(); return false;">
<input type="text" id="name" placeholder="Student Name" required>
<input type="text" id="roll" placeholder="Roll Number" required>
<input type="text" id="course" placeholder="Course" required>
<button>Add Student</button>
</form>
[Link]
body { font-family: Arial; background:#f0f8ff; }
header { background:#0a3d62; color:white; padding:15px; }
[Link]
let students = [];
function addStudent() {
alert("Student Added");
}

You might also like