-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1019 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code snippet viewer</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<h1>Code snippet viewer</h1>
</header>
<main>
<h2>Select a Topic</h2>
<div class="topic-buttons">
<a href="Template/Template.html" class="topic-btn">Template</a>
</div>
<div class="topic-buttons">
<a href="array.html" class="topic-btn">Array</a>
</div>
<div class="topic-buttons">
<a href="linked-list.html" class="topic-btn">Linked List</a>
</div>
<div class="topic-buttons">
<a href="stack.html" class="topic-btn">Stack</a>
</div>
<div class="topic-buttons">
<a href="queue.html" class="topic-btn">Queue</a>
</div>
<!-- Add more topic buttons here, each in a new div -->
</main>
<footer>
<p>© 2024 Code snippet viewer. All rights reserved.</p>
</footer>
</body>
</html>