-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (82 loc) · 3.19 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
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AlgoPatterns</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="nav-container">
<a href="#" class="logo">AlgoPatterns</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="#">Notes</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<!-- Main Content -->
<div class="homepage-container">
<header>
<h1>AlgoPatterns</h1>
<p>Explore and visualize various data structures and algorithms.</p>
</header>
<div class="cards-container">
<div class="card">
<h2>Bubble Sort</h2>
<p>Visualize the Bubble Sort algorithm with interactive controls and animations.</p>
<a href="bubbleSort/index.html" class="button">Visualize</a>
</div>
<div class="card">
<h2>Insertion Sort</h2>
<p>Understand the Insertion Sort algorithm through dynamic visualization.</p>
<a href="insertionSort/index.html" class="button">Visualize</a>
</div>
<div class="card">
<h2>Binary Search</h2>
<p>Experience the Binary Search process with real-time feedback.</p>
<a href="binarySearch/index.html" class="button">Visualize</a>
</div>
<div class="card">
<h2>Merge Sort</h2>
<p>Coming Soon! Stay tuned for more visualizations.</p>
<a href="#" class="button disabled">Coming Soon</a>
</div>
<div class="card">
<h2>Quick Sort</h2>
<p>Coming Soon! Stay tuned for more visualizations.</p>
<a href="#" class="button disabled">Coming Soon</a>
</div>
</div>
<footer>
<div class="footer-container">
<div class="footer-about">
<h3>About AlgoPatterns</h3>
<p>Your go-to platform for visualizing data structures and algorithms. Enhance your understanding through interactive learning.</p>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Notes</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-contact">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: +1 234 567 890</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 AlgoPatterns. All rights reserved.</p>
</div>
</footer>
</div>
</body>
</html>