-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (54 loc) · 1.78 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Student List</title>
<link href="css/reset.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="page">
<header class="header">
<h2>Students</h2>
<!-- Extra Credit: Dynamically insert search form here
EXAMPLE - Search form:
<label for="search" class="student-search">
<input id="search" placeholder="Search by name...">
<button type="button"><img src="img/icn-search.svg" alt="Search icon"></button>
</label>
-->
</header>
<ul class="student-list">
<!-- Dynamically insert students here
EXAMPLE - Student list item:
<li class="student-item cf">
<div class="student-details">
<img class="avatar" src="https://randomuser.me/api/portraits/women/25.jpg" alt="Profile Picture">
<h3>Ethel Dean</h3>
<span class="email">ethel.dean@example.com</span>
</div>
<div class="joined-details">
<span class="date">Joined 12-15-2005</span>
</div>
</li>
-->
</ul>
<div class="pagination">
<ul class="link-list">
<!-- Dynamically insert pagination buttons here
EXAMPLE - Two pagination buttons, one with active class, one without:
<li>
<button type="button" class="active">1</button>
</li>
<li>
<button type="button">2</button>
</li>
-->
</ul>
</div>
</div>
<script src="js/data.js"></script>
<script src="js/script.js"></script>
</body>
</html>