-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (97 loc) · 4.31 KB
/
index.html
File metadata and controls
102 lines (97 loc) · 4.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Algorithms</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-cyan.css">
<!-- <script src="https://cdn.jsdelivr.net/npm/p5@1.1.9/lib/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/p5.min.js"></script>
<script language="javascript" type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/addons/p5.dom.min.js"></script> -->
<style> body {padding: 10; margin: 0;} </style>
</head>
<body>
<header class='w3-container w3-theme w3-card'>
<h1>Algorithms</h1>
<!-- Navigation bar -->
<div class="w3-bar w3-theme">
<a href="index.html" class="w3-bar-item w3-button w3-blue">Home</a>
<div class='w3-dropdown-hover w3-hide-small w3-mobile'>
<button class='w3-button'>Search</button>
<div class='w3-dropdown-content w3-bar-block w3-card-4'>
<a href="dfs_maze.html" class="w3-bar-item w3-button w3-mobile">Depth First Search</a>
</div>
</div>
<div class='w3-dropdown-hover w3-hide-small w3-mobile'>
<button class='w3-button'>Sort</button>
<div class='w3-dropdown-content w3-bar-block w3-card-4'>
<a href="bubble_sort.html" class="w3-bar-item w3-button w3-mobile">Bubble Sort</a>
<a href="selection_sort.html" class="w3-bar-item w3-button w3-mobile">Selection Sort</a>
</div>
</div>
<a href="javascript:void(0)" class="w3-bar-item w3-button w3-right w3-hide-large w3-hide-medium" onclick="mobileFunction()">☰</a>
</div>
<div id="mobile" class="w3-bar-block w3-theme w3-hide w3-hide-large w3-hide-medium">
<div class='w3-dropdown-hover w3-mobile'>
<button class='w3-button'>Search</button>
<div class='w3-dropdown-content w3-bar-block w3-card-4'>
<a href="dfs_maze.html" class="w3-bar-item w3-button w3-mobile">Depth First Search</a>
</div>
<div class='w3-dropdown-hover w3-mobile'>
<button class='w3-button'>Sort</button>
<div class='w3-dropdown-content w3-bar-block w3-card-4'>
<a href="bubble_sort.html" class="w3-bar-item w3-button w3-mobile">Bubble Sort</a>
</div>
</div>
</div>
<script>
function mobileFunction() {
var x = document.getElementById("mobile");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</header>
<div class='w3-content' style='margin-top:180px;'>
<div class='w3-container'>
<article class='w3-row w3-margin'>
<p>
Algorithms are used in computer science to perform data processing and computations. This website will visually demonstrate some of the searching and sorting algorithms.
</p>
</article>
</div>
<div class='w3-row-padding w3-margin-top'>
<div class='w3-half'>
<div class='w3-card-2'>
<div class='w3-container w3-theme w3-xlarge w3-center'>
<!-- <a href="#">Search</a> -->
<h2>Search</h2>
<ul>
<li><a href="dfs_maze.html">Depth First Search</a></li>
</ul>
</div>
</div>
</div>
<div class='w3-half'>
<div class='w3-card-2'>
<div class='w3-container w3-theme w3-xlarge w3-center'>
<!-- <a href="bubble_sort.html">Sort</a> -->
<h2>Sort</h2>
<ul>
<li><a href="bubble_sort.html">Bubble Sort</a></li>
<li><a href="selection_sort.html">Selection Sort</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer class='w3-container w3-theme w3-card w3-bottom'>
<p>© Roy A Burgess</p>
</footer>
</body>
</html>