-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaboutus.html
66 lines (62 loc) · 3.15 KB
/
aboutus.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
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A Lockdown Story</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-md navbar-light bg-light sticky-top">
<div class="container-fluid">
<a class="navbar-brand" href="img/ActualCouchPotato.jpg"><img src="img/logo.png"> </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html"> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="game.html"> Game</a>
</li>
<li class="nav-item">
<a class="nav-link" href="information.html"> Information</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#"> About Us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="about-section">
<h1>About Us</h1>
<p>We are team Certified Couch Potatoes!</p>
<p>For our Hunter College CodeFest 2021 submission, we decided to create a game that takes us back to beginning of the pandemic and explores choices and how it affects us. Making a decision is a balancing act of various factors in our busy lives. With the addition of Covid-19, this balance has been harder to maintain for many of us. In our game, we hope to take a step back and reflect our choices from a common perspective in a fun and educational way. Enjoy!</p>
</div>
<hr>
<div class="team">
<h1>Our Team</h1>
<div class="team-item">
<h4>Ahmed Abdalla</h4>
<p> I’m a senior majoring in Computer Science at Hunter. I like working on group projects and learning about new stuff. I also love videogames!</p>
<h4>Arifa Baksh</h4>
<p> I’m a junior majoring in Computer Science with a minor in Economics. I enjoy working on social impact projects!</p>
<h4>Clare Lee</h4>
<p> I'm a sophomore majoring in Computer Science and this project is my first time taking part in a Codefest! </p>
<h4>Christina Buencamino </h4>
<p> Hello! I’m a sophomore who just switched from a Biology major to Computer Science major, and this is my first Codefest.</p>
<h4>Cindy Chan</h4>
<p> Hi! I'm a freshman and this is my first Codefest. Right now, I'm undeclared but I'm planning to major in Computer Science.</p>
<h4>Mary Tang</h4>
<p> Hi! I'm a sophomore majoring in Computer Science. This is my first time participating in a Codefest.</p>
</div>
</body>
</html>