-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
137 lines (124 loc) · 4.4 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
<!DOCTYPE html>
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs -->
<meta charset="utf-8">
<title>Bridge OS launch</title>
<meta name="The next generation Operating System from LogiCloud" content="BridgeOS">
<meta name="Sudheesh Singanamalla" content="Landing page / Timer">
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/switcher.css">
<link rel="stylesheet" href="css/layout.css">
<!-- Favicons-->
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png">
<!-- Jquery -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js"></script>
<!-- JQUERY COUNTDOWN -->
<script type="text/javascript" src="js/countdown/jquery.countdown.js"></script>
<script type="text/javascript">
$(function () {
var month=12;
var day=11;
var austDay = new Date();
austDay = new Date(austDay.getFullYear(), 11 , 11 , 0 , 0 , 0);
$('#defaultCountdown').countdown({until: austDay});
});
</script>
<!-- start cufon -->
<script src="js/cufon-yui.js" type="text/javascript"></script>
<script src="js/cufon-replace.js" type="text/javascript"></script>
<script src="js/font.js" type="text/javascript"></script>
<!-- form first value-->
<script type="text/javascript">
function clickclear(thisfield, defaulttext, color) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
if (!color) {
color = "6D6F71";
}
thisfield.style.color = "#" + color;
}
}
function clickrecall(thisfield, defaulttext, color) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
if (!color) {
color = "6D6F71";
}
thisfield.style.color = "#" + color;
}
}
</script>
<!-- Jquery Validate-->
<script type="text/javascript" src="js/jquery.validate.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#myform").validate();
});
</script>
<!-- STYLE SWITCHER -->
<script type="text/javascript">
$(document).ready(function(){
$(".trigger").click(function(){
$(".panel").toggle("fast");
$(this).toggleClass("active");
return false;
});
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11097556-8']);
_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>
</head>
<body>
<!-- STYLE SWITCHER -->
<div id="shadow_top">
<div class="container">
<div class=" twelve columns offset-by-two" id="logo">
<img src="img/logo1.png" class="scale-with-grid" alt="Logo"><!-- Your logo-->
<h1>Launching BridgeOS. </h1>
<hr>
<h2>The next generation Operating System.</h2>
</div>
<div id="defaultCountdown"></div><!-- Count down-->
<br class="clear">
<div class="sixteen columns" style="margin-top:20px">
<!-- Start newsletter form -->
<div class="ten columns" >
</div><!-- End newsletter form -->
</div>
<br class="clear">
<!-- Start footer-->
<div class="sixteen columns" id="footer">
<div class="five columns copy alpha">© 2013 LogiCloud. All Rights Reserved.</div>
<div class="eleven columns omega ">
<ul id="follow">
<li><a href="https://twitter.com/sudheesh001" id="tw">Twitter</a></li>
<li><a href="https://facebook.com/sudheesh001" id="fb">Facebook</a></li>
<li><a href="https://facebook.com/rajat.ujawane" id="fb">Facebook</a></li>
</ul>
</div>
<br class="clear">
</div><!-- End footer-->
</div><!-- End shadow top-->
</div><!-- End container-->
<div class="demo-resizeme"></div>
<script type="text/javascript"> Cufon.now(); </script>
</body>
</html>