Untitled

 avatar
unknown
plain_text
2 months ago
433 B
8
Indexable
<!DOCTYPE html>
<html>
<head>
    <title>Student App</title>
</head>
<body>

<h1>Student Management System</h1>

<input type="text" id="name" placeholder="Name">
<input type="number" id="age" placeholder="Age">
<input type="text" id="course" placeholder="Course">

<button onclick="addStudent()">Add Student</button>

<h2>Student List</h2>
<div id="output"></div>

<script src="app.js"></script>

</body>
</html>
Editor is loading...
Leave a Comment