-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
54 lines (44 loc) · 2.09 KB
/
about.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edify Music</title>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
</head>
<body>
<!-- Static navbar -->
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><span color="blue">edify</span> Music <i class="fa fa-music" aria-hidden="true"></i></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a class="active" href="#">About</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<h1>About</h1>
<p>
This website was created by Reuben Thiessen. Inspiration for the music creation page was from the example page found on https://github.com/paulrosen/abcjs.
The ABC Primer was modified to use ABCJS library to display music notation and to work offline. The Primer's author remains John Chambers and the original document can be
found at http://trillian.mit.edu/~jc/music/abc/doc/ABCprimer.html. It is not my intent to claim authorship of the document.
</p>
<p>My hope is that this site is used to introduce people to music theory and provide a way to explore with music.</p>
</div> <!-- /container -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>