-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdj.html
125 lines (108 loc) · 3.1 KB
/
dj.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
<!DOCTYPE html>
<html>
<head>
<title>KLIK Radio</title>
<style type="text/css">
html, body {
height:100%;
width:100%;
margin:0;
padding:0;
position:absolute;
top:0;
right:0;
bottom:0;
left:0;
}
body {
background-image:url('clouds.jpg');
background-size: cover;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3581053-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#contentWrapper').css('margin-top', (($(window).height() / 2) - 250) + 'px');
$('#contentWrapper').fadeIn(500);
});
</script>
<style type="text/css">
#contents {
margin-left: 40px;
background-color: #fff;
width: 500px;
border-radius: 25px;
height: 500px;
}
input[type=text] {
background-color: #eee;
border: none;
font-family: Arial;
font-weight: lighter;
font-size: 16px;
padding: 10px;
width: 95%;
}
input[type=submit] {
background-color: #ccc;
border: none;
font-family: Arial;
font-weight: bold;
font-size: 16px;
padding: 10px;
width: 95%;
}
</style>
</head>
<body>
<div style="width: 50%; float: left; height: 100%; background-color: rgba(255,255,255,0.5);" align="right">
<div style="width: 500px; height: 100%; margin-right: 30px;">
<img src="ilyaklik.png" />
</div>
</div>
<div style="width: 50%; float: right; margin-top: 10px; display:none;" align="left" id="contentWrapper">
<div id="contents">
<div style="padding: 15px; font-family: Arial; font-size: 14px;">
<form action="volunteer.php" method="post">
<p>Your Name:<br />
<input type="text" name="name" size="50" /></p>
<p>Your School:<br />
<input type="text" name="school" /></p>
<p>Your Grade:<br />
<select name="grade">
<option>Freshman</option>
<option>Sophomore</option>
<option>Junior</option>
<option>Senior</option>
</select>
<p>Your E-mail Address:<br />
<input type="text" name="email" /></p>
<p>Your Phone Number:<br />
<input type="text" name="phone" /></p>
<p>What are you looking to do?<br />
<select name="function">
<option>Radio Show / DJ</option>
<option>Computer Programming / Web Design</option>
<option>Event Management</option>
<option>Fundraising and Promotions</option>
</select>
</p>
<input type="submit" value="Sign me up!" />
</form>
</div>
</div>
</div>
<div style="clear: both; z-index: 5; position: absolute; bottom: 0px; font-size: 8px; color: #ccc; font-family: Arial; width: 50%; left:50%;" align="left"><div style="margin-left: 2px;">KLIK Radio is high school Internet radio from Northern Colorado.<br />Copyright © 2012 KLIK Radio. Music licensing managed by LoudCity, LLC.</div></div>
</body>
</html>