-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 2.07 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 2.07 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
<!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 selected" onclick="location.href = 'index.html'">Home</a>
<a class="navbar-button" onclick="location.href = 'presentations.html'">Presentations</a>
<a class="navbar-button" 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>Student Health<br>and Wellbeing App</h1>
<p>Better understanding, better life<br></p>
<a class="button blue ex-large" href="https://github.com/fdbostwick/CS495/blob/94439a5150112f40ae00d78de144bf19833196d1/release/app-release.apk?raw=true" download="SHWB.apk">Download</a>
</div>
<img src="Logo_Transparent.PNG">
</div>
<div class="sub-content flex-row">
<p>This app is for students at the University of Alabama to
provide survey questions about their health and wellbeing,
monitor their own progression, and connect them to resources
that the university offers. <br><br>The data collected through this app
will give the University a better understanding of their student
body, so they can provide a more complete experience.</p>
</div>
</div>
</body>
</html>