-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
115 lines (92 loc) · 3.28 KB
/
Home.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="JScript.js" type="text/javascript">
</script>
<script src="liveclock.js" type="text/javascript">
</script>
<script type="text/javascript" src="TypingText.js">
</script>
<title>Home - Sean Lachhander - XHTML</title>
</head>
<body onload="show_clock(); example();">
<div id="background">
<img id="image" src="BannerFinal.jpg" alt="Sean's Resume Banner"></img>
<div id="topHead">
<div id="navigationbar"> <!-- This is where the other sites will be listed -->
<h2>Navigation</h2>
<p>
<a href="Home.html">
<img src="Home.png" style="border:1px solid black;max-width:100%;" alt="Home"></img>
</a>
</p>
<p>
<a href="BeatPattern.html">
<img src="BeatPattern.png" style="border:1px solid black;max-width:100%;" alt="Beat Pattern"></img>
</a></p>
<p>
<a href="VSTI.html">
<img src="VSTi.png" style="border:1px solid black;max-width:100%;" alt="VSTi"></img>
</a></p>
<p>
<a href="EQMaster.html">
<img src="EQMaster.png" style="border:1px solid black;max-width:100%;" alt="EQ Master"></img>
</a></p>
<p>
<a href="FinishedWork.html">
<img src="FinishedWork.png" style="border:1px solid black;max-width:100%;" alt="Finished Work"></img>
</a>
</p>
</div>
<div id="middleBox">
<h2>Purpose of This Website</h2>
<p>
</p>
<div id="example1">I will be providing you with a broad insight on how I produce my music productions.
</div>
<object width="400" height="200"
data="https://www.youtube.com/embed/fwnfj4nfnhc">
</object>
<p id="example2">Chris Martin - Let Her Go (Impact Soundz Remix). This External Script is by <a href="http://www.dynamicdrive.com/dynamicindex10/text5.htm">Twey</a> </p>
<script type="text/javascript">
//Define first typing example:
new TypingText(document.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText(document.getElementById("example2"), 100, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();
</script>
</div>
<div id="firstBox">
<h2>Home</h2>
<ul style="list-style-type:square">
<li><b>Name: Sean Lachhander</b></li>
<li><b>Phone Number: (518) 320-6707</b></li>
</ul>
<ol>
<li>I will discuss a basic beat pattern, and piano roll.</li>
<li>I will show an example of a VSTi plugin with samples.</li>
<li>I will provide a description about two Mastering VSTs.</li>
<li>I will display my CDs and Reggae beat production.</li>
</ol>
<table border="1" style="width:100%">
<tr>
<td><b><a href="mailto:slachhander@albany.edu?Subject=Website%20Contact" target="_top">E-Mail Me!</a></b></td>
<td><b><a href="http://facebook.com/ImpactSoundz">Facebook</a></b></td>
</tr>
<tr>
<td><b><a href="http://soundcloud.com/impact-soundz">SoundCloud</a></b></td>
<td><b><a href="https://www.linkedin.com/in/seanlachhander">LinkedIn</a></b></td>
</tr>
</table>
<p>Background Image Provided By:
<a href="https://pixabay.com/get/14849719dcafda5933f3/1443646649/wave-850007_1280.jpg?direct">Rrae</a></p>
</div>
<div id="footer">
<p>Website Created by Sean Lachhander.</p>
</div>
</div>
</div>
</body>
</html>