-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (99 loc) · 3.89 KB
/
index.html
File metadata and controls
103 lines (99 loc) · 3.89 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
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Algorithms Visulization</title>
<!-- Bootstrap css -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Roboto+Slab&family=Roboto:wght@400;700&display=swap"
rel="stylesheet" />
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/fe6524855c.js" crossorigin="anonymous"></script>
<link href="https://kit-free.fontawesome.com/releases/latest/css/free-v4-shims.min.css" media="all"
rel="stylesheet">
<link href="https://kit-free.fontawesome.com/releases/latest/css/free-v4-font-face.min.css" media="all"
rel="stylesheet">
<link href="https://kit-free.fontawesome.com/releases/latest/css/free.min.css" media="all" rel="stylesheet">
<!-- General CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- Index.html CSS -->
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="sidenav sticky">
<h5 id="Home"><a class="nav-link" href="#">Home</a></h5>
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-auto">
<button class="btn btn-link" data-toggle="collapse" data-target="#collapseOne"
aria-expanded="true" aria-controls="collapseOne">
Searching
</button>
</h5>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="binarySearch.html">Binary Search<span
class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">
Sorting
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="bubbleSort.html">Bubble Sort</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="container mx-auto my-auto">
<div class="row">
<div class="col-12">
<h1>Algorithms Visulization Project</h1>
<h5>The aim for the project is to make sure that I fully grasp the algorithms that I encounter/create
and to try to do a detailed analysis for them.</h5>
<p>Feel free to contact me to add your favourite algorithms!</p>
<p><a href="https://www.facebook.com/hossam.tarek.9421450"><i class="fab fa-facebook-square fa-2x"
aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/hossam-tarek-a106ba190/"><i class="fab fa-linkedin fa-2x"
aria-hidden="true"></i></a>
<a href="https://github.com/HossamTarek-bits"><i class="fab fa-github fa-2x"
aria-hidden="true"></i></a>
</p>
</div>
</div>
</div>
<!-- Importing Jquery -->
<script src="js/jquery.min.js"></script>
<!-- Importing Popper -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous">
</script>
<!-- Importing Bootstrap -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous">
</script>
</body>
</html>