-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data structures and algorithms</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<h1>Data structures and algorithms</h1>
</header>
<main>
<h2>Select a Topic</h2>
<div class="topic-buttons">
<a href="Topics/Big O/Big O.html" class="topic-btn">Big O</a>
</div>
<div class="topic-buttons">
<a href="Topics/Arrays/Arrays.html" class="topic-btn">Arrays</a>
</div>
<div class="topic-buttons">
<a href="Topics/Linked Lists/Linked Lists.html" class="topic-btn">Linked Lists</a>
</div>
<div class="topic-buttons">
<a href="Topics/Stacks/Stacks.html" class="topic-btn">Stacks</a>
</div>
<div class="topic-buttons">
<a href="Topics/Queues/Types of queues page.html" class="topic-btn">Queues</a>
</div>
<div class="topic-buttons">
<a href="Topics/Hash/Hash.html" class="topic-btn">Hash</a>
</div>
<div class="topic-buttons">
<a href="Template/Template for topics.html" class="topic-btn">Template</a>
</div>
<!-- Add more topic buttons here, each in a new div -->
</main>
<footer>
<p>© 2024 Data structures and algorithms. All rights reserved.</p>
</footer>
</body>
</html>