-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 2.77 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Studio Buddy</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<header>
<nav>
<ul id="navbar">
<!-- <a href="/about.html"><li>About</li></a> -->
<li><a href="documents.html" class ="hover-link">Documents</a></li>
<li><a href="design.html" class ="hover-link">Design</a></li>
<li><a href="presentation.html" class ="hover-link">Presentation</a></li>
</ul>
</nav>
</header>
<img id ="logo" src="images/studio_buddy_logo.png" alt="clip art illustration of person playing trumpet" width="40%" />
<p id ="subtitle">
A music scheduling app for Senior Project (CS 4850) Fall 2022 in collaboration
with the Department of Music.
</p>
<article>
<h1>Overview</h1>
<p class = "descriptions readability">Currently, Professor Lindsey, a trumpet professor of the Department of Music at KSU, is currently using an application called 'The GOLD Method' to schedule routine practices for his students. The GOLD Method has limitations that he would like to improve on in our design of a similar application. In our application, we implemented a design that allows Professor Lindsey to manage his classes without having to go into each student’s account to add practices and provide accessibilty through a mobile application. Our main goal in our design is to provide a simple user experience that will save the professor time and be beneficial to his students. </p>
<h1>GitHub Repository </h1>
<p class=" descriptions readability"> We used GitHub to collaborate on the code. GiHub is an online platform that allows organizations and individuals to host their software projects. GitHub uses Git, for version control and managing projects.You can find our repository <a href="https://github.com/sp12-music-scheduling/sp12-music-sch-mobile-app" target="_blank" style= 'color: #754747; '>here</a>.</p>
<h1>Team Members</h1>
<p class=" descriptions readability"> The team consists of Alejandro Zicavo, Tubatsi Moloi, and Elmiche Kinmakon.</p>
</article>
<footer>
<ul class = "three-column-section small-screen-footer">
<li> <a href ="https://ccse.kennesaw.edu/">CCSE Site</a> </li>
<li > <a href ="https://cs-seniorprojects.blogspot.com/">Course Site</a> </li>
<li> <a href ="https://kennesaw.edu/">KSU Site</a> </li>
<li > <a href ="presentation.html">Presentation</a> </li>
<li> <a href ="design.html">Design</a> </li>
<li> <a href ="documents.html">Documents</a> </li>
</ul>
</footer>
<script src="src/index.js"></script>
</body>
</html>