-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsproject.html
More file actions
35 lines (35 loc) · 1.2 KB
/
Copy pathsproject.html
File metadata and controls
35 lines (35 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link rel="stylesheet" href="sproject.css">
</head>
<body>
<header>
<h1>Projects</h1>
<p class="subtitle">Available Projects for Students</p>
</header>
<div class="container">
<!-- Dynamic Projects Section -->
<div id="projects-list" class="projects-list">
<!-- Projects will be dynamically inserted here -->
</div>
<!-- Pagination Section -->
<div class="pagination-container">
<label for="items-per-page">Items per page:</label>
<select id="items-per-page" name="items-per-page" onchange="updateProjects()">
<option value="5" selected>5</option>
<option value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
</select>
<span id="page-info" class="page-info">1 – 5 of 15</span>
<button id="prev-btn" class="pagination-btn" onclick="prevPage()" disabled><</button>
<button id="next-btn" class="pagination-btn" onclick="nextPage()">></button>
</div>
</div>
<script src="sproject.js"></script>
</body>
</html>