-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeer.html
More file actions
82 lines (65 loc) · 1.68 KB
/
peer.html
File metadata and controls
82 lines (65 loc) · 1.68 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
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
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NYC Health Knowledge Library: Journal Articles</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="breadcrumbs" aria-label="Breadcrumb">
<ol>
<li><a href="index.html">Home</a></li>
<li aria-current="page">Journal Articles</li>
</ol>
</nav>
<header>
<h1>Journal Articles</h1>
<p id="results-count" aria-live="polite"></p>
</header>
<main>
<!-- Filters -->
<section aria-labelledby="filters-heading">
<h2 id="filters-heading">Filter Publications</h2>
<form id="filters">
<label for="search-input">
Search
<input type="search" id="search-input" />
</label>
<label for="year-filter">
Year
<select id="year-filter">
<option value="">All Years</option>
</select>
</label>
<label for="journal-filter">
Journal
<select id="journal-filter">
<option value="">All Journals</option>
</select>
</label>
<label for="keyword-filter">
Keyword
<input
type="search"
id="keyword-filter"
placeholder="Type a keyword..."
/>
</label>
<button type="button" id="clear-filters">
Clear All
</button>
</form>
</section>
<!-- Results -->
<section aria-labelledby="results-heading">
<h2 id="results-heading">Results</h2>
<ul id="results-list"></ul>
<nav aria-label="Pagination">
<div id="pagination"></div>
</nav>
</section>
</main>
<script src="peer.js"></script>
</body>
</html>