-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (98 loc) · 5.44 KB
/
index.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
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Site under construction</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script type="text/javascript" src="js/jquery.countdown.js"></script>
<script type="text/javascript" src="js/jcarousellite1.0.1_min.js"></script>
<!-- jquery countdown-->
<script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 0, 0);
$('#defaultCountdown').countdown({until: austDay, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}'});
$('#year').text(austDay.getFullYear());
});
</script>
<!-- jquery slider -->
<script type="text/javascript">
$(function() {
$("#slidertext").jCarouselLite({
btnNext: ".next",
btnPrev: ".prev"
});
});
</script>
<!--script for IE6-image transparency recover-->
<!--[if IE 6]>
<script type="text/javascript" src="js/DD_belatedPNG_0.0.7a-min.js"></script>
<script>
/* EXAMPLE */
DD_belatedPNG.fix('#logo img,#main,.counter,.twitter,.flickr,.facebook,.youtube,#submit_button,.prev img,.next img,#email_input');
</script>
<![endif]-->
</head>
<body>
<div class="container">
<div id="header">
<div id="logo">
<a href="/" style="text-decoration:none;font-size:3em;"><span style="color:#4c4c4c">megazoll</span><span style="color:#fff">.com</span></a>
</div><!--end logo-->
<div id="contact_details">
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div><!--end contact details-->
</div><!--end header-->
<div style="clear:both"></div>
<div id="main">
<div id="content">
<div class="text">
<h2>This website is coming soon</h2>
</div><!--end text-->
<div class="counter">
<h3>Estimated Time Remaining Before New Year:</h3>
<div id="defaultCountdown"></div>
</div><!--end counter-->
<div class="details">
<!--slider prev button-->
<a class="prev" href="#"><img src="images/prev.png" alt="" />
</a>
<div id="sliderwrap">
<div id="slidertext"><!-- The slider -->
<ul>
<li>
<h3>You may find me below:</h3>
<div class="social">
<a href="http://twitter.com/megazoll" class="twitter"></a>
<a href="http://www.flickr.com/photos/megazoll/" class="flickr"></a>
<a href="http://www.facebook.com/megazoll" class="facebook"></a>
<a href="http://www.youtube.com/user/Megazoll" class="youtube"></a>
</div>
</li><!-- Slider item -->
<li>
<h3>Type your email id to get the updates!</h3>
<form action="" method="post" id="subscribeform">
<p>
<div id="email_input"><input type="text" size="30" value="Enter Your E-mail" onfocus="if(this.value=='Enter Your E-mail'){this.value=''};" onblur="if(this.value==''){this.value='Enter Your E-mail'};" id="email" />
<input type="submit" id="submit_button" value="Submit" size="80" />
</div>
<br />
</p>
</form>
</li><!-- Slider item -->
<li>
<h3>Some words about me</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus hendrerit. Pellentesque aliquet nibh nec urna. In nisi neque, aliquet vel, dapibus id, mattis vel, nisi.</p>
</li><!-- Slider item -->
</ul>
</div><!-- End of slidertext -->
</div><!-- End of sliderwrap -->
<!--slider next button-->
<a class="next" href="#"><img src="images/next.png" alt=""/></a>
</div><!--end details-->
</div><!--end content-->
</div><!--end main-->
</div><!--end class container-->
</body>
</html>