Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
angelicagardner authored May 26, 2024
1 parent c39d973 commit 1e9849c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<title>Paper Collection in Computer Science</title>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="List compiling summaries, analyses, and key insights from research papers across the Computer Science field." name="description"/>
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<h1>Paper Collection in Computer Science</h1>
<p>List of papers read.</p>
<select id="labelFilter">
<option value="all">All Labels</option>
<!-- Options will be added here by the JS script -->
</select>
<table id="papersTable">
<thead>
<tr>
<th>Title</th>
<th>Labels</th>
<th>Year</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="script.js"></script>
</body>
</html>

0 comments on commit 1e9849c

Please sign in to comment.