-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusicapp.html
87 lines (63 loc) · 2.46 KB
/
musicapp.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
<!DOCTYPE HTML>
<html lang="en">
<link href="https://fonts.googleapis.com/css?family=Megrim" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!--Stylesheet -->
<link href="styles.css" rel="stylesheet" type="text/css"/>
<!-- Link reference to 16x16 icon for website (.ico) -->
<link href="images/me.png" rel="icon"/>
<title>Jasmine Dao - an aspiring full stack developer | Projects</title>
</head>
<body>
<!-- If JS deactivated, prompt message: -->
<noscript>Please enable JavaScript.</noscript>
<!-- Navigation -->
<nav class="topnav">
<a href="index.html">h o m e</a>
<a href="index.html#about">a b o u t</a>
<a class="active" href="index.html#projects">p r o j e c t s</a>
<a href="index.html#contact">c o n t a c t</a>
</nav>
<!-- Sections -->
<div class="project_sections">
<section>
<!-- Website Project -->
<h2 class="personal">Music Theory App</h2>
<div class="appdiv">
<video class="appdemo" src="images/appdemo.mp4" type="video/mp4" alt="Music Theory for Beginners App Demo" controls>Your browser does not support the video tag.
</video>
<p class="website_about">
<b>Category:</b> Mobile Development (Android)
<br>
<b>Tools:</b> Android Studio / Paint Tool SAI
<br>
<b>Languages:</b> Java / XML
<br>
<br>
<b>Link:</b>
<a href="https://play.google.com/store/apps/details?id=me.jasminedao.musictheoryapp" class="link" target="_blank">Google Play Store</a>
<p class="appcomments">
A mobile application that teaches the basics of music theory using various tutorials, visual aids, and practice tools.
<br><br>
Created July 2018.
</p>
</p>
</div>
</section>
<!-- Projects -->
<section class="projects_list">
<h2 class="hProject">Other Projects</h2>
<div class="row1">
<a href="calculator.html" target="_self">
<img class="project4" src="images/project4.JPG" alt="Calculator">
</a>
<a href="straightup.html" target="_self">
<img class="project3" src="images/project3.JPG" alt="Straight Up App">
</a>
</div>
</section>
</div>
</html>