forked from ztaylor2/algorithm-teacher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
76 lines (60 loc) · 2.19 KB
/
Copy pathabout.html
File metadata and controls
76 lines (60 loc) · 2.19 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
<html>
<head>
<meta charset="utf-8">
<title>About Us</title>
<link href="style/nav-bar.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="about.css">
</head>
<body>
<header>
<nav>
<ul>
<li>
<div class="rotating">
<figure class="box1"><div id="logo"><a href="index.html"> Algorithms</a></div></figure>
</div>
</li>
<li id="floatRight">
<a href="about.html" id="aboutLink">About us</a>
</li>
<li class="dropdown" id="floatRight">
<h2 id="dropdownAlgorithms">Tutorials</h2>
<div class="dropdown-content">
<h3 class="algoHeading">Sorting</h3>
<a href="html/bubble.html">Bubble Sort</a>
<br />
<a href="html/insertion.html">Insertion Sort</a>
<br />
<a href="html/selection.html">Selection Sort</a>
<br />
<a href="html/quick.html">Quick Sort</a>
<h3 class="algoHeading">Searching</h3>
<a href="html/linear-search.html">Linear Search</a>
<br />
<a href="html/binary-search.html">Binary Search</a>
<h3 class="algoHeading">Shuffling</h3>
<a href="html/shuffle.html">Fisher Yates</a>
</div>
</li>
</ul>
</nav>
</header>
<div class="header">
<h1 id="siteHeading">About Us</h1>
<h2 id="subHeading">Click one of the pictures to learn more about the team!</h2>
</div>
<section id="pics">
<div class="groupPhoto">
<img id="zach" src="images/zach.png"/>
<img id="ivette"src="images/ivette.png">
<br>
<img id="john" src="images/john.png"/>
<img id="daniel" src="images/daniel.png"/>
</div>
</section>
<footer>
<h3 id="footerHead">Copyright © Algorithm Teaching Tool: Zachary Taylor, John Jensen, Ivette Cortez, Daniel Pillay </h3>
</footer>
<script src="about.js"></script>
</body>
</html>