-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuides.php
28 lines (28 loc) · 1.15 KB
/
Guides.php
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
<?php
require 'header.php';
require 'navbar.php';
?>
<div class="container">
<div class="card-deck pad-top-3 lg-w-50 md-w-50 mx-auto">
<div class="card text-center">
<div class="card-body">
<h5 class="card-title">Users</h5>
<p class="card-text">Instructions on how to use Bioliner and the website.</p>
</div>
<div class="card-footer">
<a href="https://www.youtube.com/watch?v=jIdbW148Nd0" class="btn btn-secondary btn-block" target="_blank">Go To Video</a>
</div>
</div>
<div class="card text-center">
<div class="card-body">
<h5 class="card-title">Developers</h5>
<p class="card-text">Information explaining the Bioliner source code to future developers.</p>
</div>
<div class="card-footer">
<a href="https://www.youtube.com/watch?v=9dqi8Tviddw" class="btn btn-secondary btn-block" target="_blank">Go To Video</a>
</div>
</div>
</div>
</div>
</body>
</html>