forked from cppcoders/Algorithms-Visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (35 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Algorithms Visualizer</title>
<meta name="Algorithms Visuializer" content="Algorithms Visuializer">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!--
<script src="https://kit.fontawesome.com/ed9f8980e7.js" crossorigin="anonymous"></script>
-->
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body onload="algorithmsCards()">
<!-- ==================================================== Starting Header ============================================================== -->
<header>
<nav>
<h1 class="col">Algorithms Visualizer</h1>
</nav>
</header>
<!-- ==================================================== Ending Header ============================================================= -->
<!-- ==================================================== Starting Algorithms ========================================================= -->
<div class="Algorithms-Container" >
<div class="cont row" id ="container">
</div>
</div>
<!-- ==================================================== Ending Algorithms ========================================================== -->
<!-- ==================================================== Starting Footer ========================================================== -->
<footer>
Ⓒ2020 Mohamed Ramadan and Tarek Hassan
</footer>
<!-- ==================================================== Ending Footer ========================================================== -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="js/main.js"></script>
</body>