-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
95 lines (92 loc) · 3.74 KB
/
about.html
File metadata and controls
95 lines (92 loc) · 3.74 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
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Algorithm Visualizer</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Ribeye&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
.navbar {
background-color: #343a40;
}
.navbar-brand {
font-size: 1.5rem;
font-weight: 700;
}
.navbar-toggler-icon {
background-color: #fff;
}
.nav-link {
font-size: 1.2rem;
}
.container {
margin-top: 2rem;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
p {
font-size: 1.2rem;
line-height: 1.6;
}
.btn-primary {
background-color: #343a40;
border-color: #343a40;
font-size: 1.2rem;
padding: 0.75rem 2rem;
}
.btn-primary:hover {
background-color: #212529;
border-color: #212529;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="#">Algorithm Visualizer</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-5">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<h1>About Algorithm Visualizer</h1>
<p>
Algorithm Visualizer is a web application designed to help users understand and visualize various algorithms in action.
Whether you're a student learning about algorithms for the first time or a seasoned developer looking to refresh your knowledge,
Algorithm Visualizer provides an interactive platform to explore and experiment with different algorithms.
</p>
<p>
Our mission is to make learning algorithms fun and accessible to everyone. With a user-friendly interface and real-time visualization,
Algorithm Visualizer allows users to see how algorithms work step by step, making complex concepts easier to grasp.
</p>
<p>
Ready to dive in? Visit our <a href="index.html">Home</a> page to start exploring algorithms or <a href="contact.html">contact us</a> if you have any questions or feedback.
</p>
<a href="index.html" class="btn btn-primary">Explore Algorithms</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>