forked from C-Tate/MusicalAid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.html
101 lines (83 loc) · 2.68 KB
/
aboutus.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="css/style.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #242426;
}
/*#body1 {
font-family: sans-serif;
margin: 0;
padding: 20px;
background-color: #242426;
display: flex;
justify-content: center;
align-items: center;
text-align: left;
font-size: 30px;
}*/
/*#body2 {
background-color: rgb(255,215,0);
float: left;
color: rgb(255,215,0);
padding: 8px;
text-align: center;
background-color: 242426;
list-style-type: none;
margin: 0;
padding: 0;
background-color: black;
}*/
h1 {
padding-left: 100px;
color: rgb(255, 215, 0);
font-size: 45px; /* Adjust the font size */
}
p {
line-height: 1.6;
color: rgb(255, 215, 0);
width: 85%;
padding-left: 50px;
font-size: 30px;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
</style>
</head>
<body>
<div>
<ul>
<li><a href="index.html" class="sidebar-link">Home</a></li>
<li><a href="original.html" class="sidebar-link">Audio to Note</a></li>
<li><a href="ReadNoteGame.html" class="sidebar-link">Note Reading Practice</a></li>
</ul>
</div>
<br>
<br>
<br>
<br>
<br>
<div id="body1">
<h1>About Us</h1>
<br>
<p>We are a team of passionate engineering students dedicated to the creation of creative technologies. This uniting passion lead us to develop MusicalAid, a unique tool for music-lovers around the world.</p>
<br>
<p>Located at McGill University, we thrive in a dynamic and collaborative environment that fosters creativity and learning. Our diverse backgrounds and skills come together to form a strong and motivated team.</p>
<br>
<p>Join us on our journey as we explore the exciting world of music generation and contribute to meaningful projects that push the boundaries of what is possible.</p>
</div>
<div>
<img src="assets/mcgill_university.jpg" alt="McGill University">
</div>
</body>
</html>