-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
68 lines (68 loc) · 2.55 KB
/
about.html
File metadata and controls
68 lines (68 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>About Us</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body class="preload">
<header>
<a href="index.html"><img id="logo" src="images/mandelbot_logo.png" /></a>
<ul id="topLinks">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<div id="mainContent">
<h1>About Us</h1>
<p>
The Mandelbots is <a href="https://www.firstinspires.org/robotics/ftc">FIRST Tech Challenge</a> Team #12063,
a small team of dedicated designers, builders, and programmers that has created, tested, and used robots
for competitions across the region since 2016. It is named
after the Mandelbrot set, a recursive fractal defined by a certain property of
complex numbers.
</p>
<h2>Meet The Team</h2>
<div id="allAvatars" class="clearfix">
<div class="avatarContainer">
<img src="images/covert_kingpin.jpg" />
<div class="avatarDesc">
<h3>Nicholas Pinto</h3>
<p>
Nicholas is the current leader of the Mandelbots, succeeding Simon Mahns, the
founder. He is also a deft tactician who oversees the general robotics
strategy from year to year.
</p>
</div>
</div>
<div class="avatarContainer">
<img src="images/landmaster.jpg" />
<div class="avatarDesc">
<h3>Thanh-Phuong Tran</h3>
<p>
Thanh-Phuong is an avid programmer who writes mods for Minecraft, including his signature mod,
PlusTiC, and manages various other software projects. He is the maintainer of this site and designer of the current logo.
</p>
</div>
</div>
</div>
</div>
<footer>
<h2>Proudly sponsored by</h2>
<img class="sponsor" src="images/omnified.png" />
<img class="sponsor" src="images/united_theraphutics.png" />
<p><a href="https://github.com/mandelbots/mandelbots.github.io">Website source code</a></p>
</footer>
<script src="js/depreload.js"></script>
<script src="js/dynamic_footer.js"></script>
<script src="js/avatars.js"></script>
</body>
</html>