-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquartets.php
59 lines (50 loc) · 1.32 KB
/
quartets.php
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
<?php
// Page title
$title = "Organized Sound in Time";
// Custom stylesheet additions
$style = "";
// Custom font additons
$font = "<link href='https://fonts.googleapis.com/css?family=Cinzel' rel='stylesheet' type='text/css'>";
// Begin generating page
include("header.php");
?>
<!-- A page for a side-project that is not included publicly in my main site.
I am including as an example of how a page with custom features can be dynamically implemented. -->
<div style="text-align:center">
<h1 style=
"font-family: 'Cinzel', serif;
font-variant: small-caps;
font-size: 2.75em;
font-weight: normal;
margin-bottom:-0.4em;
padding:0">
ORGANIZED SOUND in TIME
</h1>
<h2 style=
"font-family: 'Cinzel', serif;
font-size: 1.8em;
font-weight: normal;
margin:0; padding:0">
COMPOSITION I STRING QUARTETS 2013
</h2>
<br><i>(I'm almost done mixing it!)</i>
</div>
<br><br><br>
<table style="margin-left:auto; margin-right:auto">
<tr>
<td style="padding-right: 3em;">
<img src ="images/quartetscover.png" alt="Album art">
</td>
<td style="vertical-align: top; padding-left: 3em;">
<br><br>
<h2>Coming soon in:</h2>
<ul style="font-style:italic;">
<li>FLAC</li>
<li>Apple Lossless</li>
<li>MP3 320</li>
<li>MP3 V0</li>
</ul>
</td>
</tr>
</table>
<?php include("footer.php"); ?>