-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
59 lines (51 loc) · 2.2 KB
/
about.html
File metadata and controls
59 lines (51 loc) · 2.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<script src="./lib//jquery.min.js"></script>
<script src="./lib/tonal.min.js"></script>
<script src=./lib/audiosynth.js></script>
<script src="./lib/piano-keys-webcomponent.umd.min.js"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Harmony Demo by Not251</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="./assets/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Responsive navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark custom-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">Harmony Demo</a>
<ul class="navbar-nav ml-auto">
<a class="nav-link" href="about.html">by not251</a>
<li class="nav-item"></li>
</ul>
</div>
</nav>
<div class="containera d-flex align-items-center justify-content-center">
<div class="row" >
<h1 class="title daje">not251</h1>
<p class="text">
A research and development team focused on the creation of new tools, exploring the intersection between music theory and algebra in the vast field of algorithmic composition.
<br>
Our goal is to develop a simple, comprehensive, fully controllable and elegant way to create and analyse musical phenomena with a vectorial-parametric approach, for the benefit of the music and research community.</p>
</div>
</div>
</body>
<style>
.daje {
font-size: 400%;
}
.containera {
height: 95vh;
padding: 20vh;
font-size: larger;
}
</style>
</html>