-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
44 lines (39 loc) · 2.04 KB
/
demo.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
<!-- Page for the Demo Video -->
<!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>
<h2>Video Demo</h2>
<p>Click below to view our video demo.</p>
<iframe width="1088" height="612" src="https://www.youtube.com/watch?v=a1Ez4L_95DQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</main>
</body>
<footer>
<p>For information on the authors, click <a href="./about.html">here</a> or click the "About" section at the top of the page.</p>
<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="">here</a> or click the Demo Video section at the top of the page.</p>
<p>Copyright 2023 The Bored Bards</p>
</footer>
</html>