-
Notifications
You must be signed in to change notification settings - Fork 2
/
reg.html
108 lines (88 loc) · 3.74 KB
/
reg.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The first Webmaker event in Mabalar region(Kerala).">
<meta name="author" content="Abid Aboobaker">
<title>FAQ-WebMaker Malappuram | Mozilla Kerala</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="icon" type="image/png" href="img/favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,800' rel='stylesheet' type='text/css'>
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for this template -->
<link href="css/carousel.css" rel="stylesheet">
<link href="css/dev.css" rel="stylesheet">
</head>
<body>
<div class="row header">
<div class="container">
<div class="col-lg-12 new" >
<div class="col-lg-4" style="text-align: center; padding-top: 30px; padding-bottom:20px;">
<p>Excited to join?<br>Don't forget to read the <a href="faq.html">FAQs</a> before you register.</p>
<a href="reg.html" class="btn btn-danger" disabled="disabled" type="role">Register Now!</a>
</div>
<div class="col-lg-6 date">
<img src="img/date.png" />
</div>
<div class="col-lg-2 logo">
<a href="index.html"><img src="img/logo.png" /></a>
</div>
</div>
</div>
</div>
<!-- <sticky menu> -->
<hr />
<div class="colored">
</div>
<div class="container">
<div class="col-lg-12">
<iframe src="https://docs.google.com/forms/d/1uCn2rw3UsQTsoBl2y6FobUz9bPhMN-7aP5LOpapCl5Q/viewform?embedded=true" width="850" height="1400" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
<hr />
<!-- FOOTER -->
<footer>
<div class="container">
<p class="pull-right"><a href="#">Back to top</a></p>
<p> Powered with <a href="http://getbootstrap.com/">Twitter bootstrap</a> · A <a href="http://www.mozillakerala.org"><img class="MozKFootr" src="img/mozilla.png" /> Kerala</a> Initiative · <a href="http://www.firefox.com">Download<img src="img/firefox_logo-wordmark-horiz_RGB.png" width="7%" height="7%"></a></p>
</div>
</footer>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$(document).ready(function() {
$('#myCarousel').carousel({
interval: false
});
});
</script>
<script type="text/javascript">
$(window).scroll(function () {
if ($(window).scrollTop() > 500) {
$('.snav').addClass('visible');
$('.snav').animate({
top: '0px'
});
//$(window).unbind('scroll');
}
if($(window).scrollTop() < 500) {
$('.snav').removeClass('visible');
$('.snav').removeAttr('style');
}
});
</script>
</body>
</html>