-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
166 lines (119 loc) · 4.58 KB
/
portfolio.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<!--header-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Music Mixing and Mastering Studio">
<meta name="keywords" content="music, music production, mixing, music mixing, mastering, music matering, recording, music recording, studio, recording studio, professional">
<meta name="author" content="Braxton Salyer">
<title>
Scarlet Letters Productions | Portfolio
</title>
<link rel="stylesheet" href="res/bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
</head>
<!--END header-->
<body>
<!--background-->
<div class="backgroundSet">
<div class="backgroundImage">
<div id="portfolioBackgroundImage">
</div>
</div>
<div class="backgroundFX">
<div id="portfolioBackgroundFX">
</div>
</div>
</div>
<!--END background-->
<!--foreground-->
<div class="foregroundSet">
<!--navigation-->
<nav>
<!--logo-->
<div id="logo">
<a href="index.html">
Scarlet Letters Productions
</a>
</div>
<!--END logo-->
<!--links-->
<ul id="navLinks">
<li>
<a href="index.html">
Home
</a>
</li>
<li>
<a href="aboutMe.html">
About Me
</a>
</li>
<li>
<a class="current" href="portfolio.html">
Portfolio
</a>
</li>
<li>
<a href="contact.html">
Contact
</a>
</li>
</ul>
<!--END links-->
</nav>
<!--END navigation-->
<div id="portfolioHead" class="container">
<h1>
Portfolio
</h1>
</div>
<div id="audioPlayer" class="container">
<audio id="audio" preload="auto" tabindex="0" type="audio/mp3" controls>
<source src="res/audio/contortionist.mp3">
</audio>
<ol id="playlist">
<li class="active">
<a href="res/audio/01 - Rival - Odds.mp3">
Rival - Odds.
</a>
</li>
<li>
<a href="res/audio/Nate Bohnet - Through A Prism Lens.mp3">
Nate Bohnet - Through A Prism Lens
</a>
</li>
<li>
<a href="res/audio/01 - The Place We Used To Call Home.mp3">
District 7 - The Place We Used To Call Home
</a>
</li>
<li>
<a href="res/audio/01 - The Year - Bastion.mp3">
The Year - Bastion
</a>
</li>
<li>
<a href="res/audio/01 - Binary Code - 707.mp3">
Binary Code - 707
</a>
</li>
</ol>
</div>
<!--footer-->
<footer id="footer">
<p>
© 2019 Braxton Salyer
</p>
</footer>
<!--END footer-->
</div>
<!--END foreground-->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="res/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="res/js/player.js"></script>
</body>
</html>