-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
64 lines (57 loc) · 3.39 KB
/
about.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!-- About Page -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Bored Bards Project Site
</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="./styles.css" rel="stylesheet"/>
</head>
<body>
<header>
<h1>The DM's Grimoire - Presented by The Bored Bards</h1>
<a href="./index.html"><img class="logo" width="94" src="./app/src/main/launcher_icon_03_var2-playstore.png" alt="Site Logo"></a>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="https://github.com/SCCapstone/BoredBards/releases/tag/v1.0">Download APK</a></li>
<li><a href="https://github.com/SCCapstone/BoredBards">App Repository</a></li>
<li><a href="./demo.html">Demo Video</a></li>
</ul>
</nav>
</header>
<main>
<section class="aboutUs">
<div class="charlie">
<h2>Charles Simons</h2>
<p>Charles Simons has a BS in Computer Science from the University of South Carolina. His interests include mobile apllication development, web design and mainframe programming.</p>
View his <a href="www.linkedin.com/in/charlie-simons-iv">LinkedIn</a> profile.
</div>
<div class="andrew">
<h2>Andrew MacMurray</h2>
<p>Andrew MacMurray has a Bachelor of Computer Information Systems and a Minor in Business Administration from the University of South Carolina. He is passionate about emerging technologies and their potential effects on different markets;predominately robotics and AI.</p>
<!-- View his <a href="">LinkedIn</a> profile. -->
</div>
<div class="caroline">
<h2>Caroline Barrineau</h2>
<p>Caroline Barrineau has a BS in Computer Science from the University of South Carolina. She is passionate about software and game development, and GUIs. She believes that computer science allows for freedom of creativity along with a healthy dose of puzzle-solving.</p>
<!-- View her <a href="">LinkedIn</a> profile. -->
</div>
<div class="jake">
<h2>Jacob Powers</h2>
<p>Jacob Powers has a Bachelors of Computer Information Systems and a Minor in Business Administration. He is interested in many facets of software development and wishes to further his knowledge of the field and the industry as a whole.</p>
<!-- View his <a href="">LinkedIn</a> profile. -->
</div>
</section>
</main>
</body>
<footer>
<p>To download our application's APK, click <a href="./download.html">here</a> or click the "Download APK" section also at the top of the page.</p>
<p>To visit our project repository, click <a href="https://github.com/SCCapstone/BoredBards">here</a> or click the "App Repository" section.</p>
<p>To view our video demo, click <a href="./demo.html">here</a> or click the Demo Video section at the top of the page.</p>
<p>Copyright 2023 The Bored Bards</p>
</footer>
</html>