-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
39 lines (36 loc) · 1.36 KB
/
about.html
File metadata and controls
39 lines (36 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>Wellbeing App</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="navbar.css" rel="stylesheet" type="text/css" media="all" />
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="script.js" defer></script>
</head>
<body>
<!-- Website navigation bar Start -->
<div id="navbar-container" class="navbar-container">
<div id="navbar-body flex-row" class="navbar-body">
<a class="navbar-brand"></a>
<a class="navbar-button" onclick="location.href = 'index.html'">Home</a>
<a class="navbar-button" onclick="location.href = 'presentations.html'">Presentations</a>
<a class="navbar-button selected" onclick="location.href = 'about.html'">Team</a>
</div>
</div>
<!-- Website navigation bar End -->
<div class="flow-container">
<!-- Main content Start -->
<div class="main-content flex-row">
<div class="introduction flex-column">
<h1>The Team</h1>
<p>Rick Bostwick<br>
Ben Gerszewski<br>
Han Fang<br>
Bruce Logue
</p>
</div>
</div>
</div>
</body>
</html>