-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
213 lines (209 loc) · 7.76 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html>
<head>
<title>EDC - JSS , Noida</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script><!-- jquery -->
<!-- all things are linked over the net , no local folder for js -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/animate.css">
<script src="js/jquery-sectionsnap.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".main").sectionsnap({
// time dilay (ms)
'delay': 100,
// selector
'selector': ".section",
// % of window height from which we start
'reference': .9,
// animation time (snap scrolling)
'animationTime': 400,
// offset top (no snap before scroll reaches this position)
'offsetTop': 0,
// offset bottom (no snap after bottom - offsetBottom)
'offsetBottom': 0
});
});
$(function(){
var hasBeenTrigged = false;
$(window).scroll(function() {
if ($(this).scrollTop() >= 300 && !hasBeenTrigged) {
$('#aboutDesc').addClass('animated bounceInDown');
$('#aboutImg').addClass('animated bounceInLeft');
$('#aboutStep').addClass('animated bounceInRight');
hasBeenTrigged = true;
}
});
});
</script>
<style>
.navbar{
margin-bottom: 0;
border-radius: 0;
color: #FFF;
padding: 1% 0;
font-size: 1.3em;
border: 0;
}
.navbar-brand{
float: left;
min-height: 50px;
}
.navbar-inverse .navbar-nav .active a, .navbar-inverse .navbar-nav .active a:focus, .navbar-inverse .navbar-nav .active a:hover{
color: white;
background-color: #222222;
}
.item{
max-height: 650px;
}
.carousel-caption{
top: 50%;
color: white;
transform: translateY(-70%);
text-transform: uppercase;
}
.container{
margin: 4% auto;
}
#aboutusp{
padding: 4%;
font-size: 1.4em;
}
footer{
width:100%;
background-color: #222222;
padding: 2%;
color: white;
}
.fa{
padding: 20px;
font-size: 30px;
color: white;
}
.fa:hover{
color: #a8c6f4;
text-decoration: none;
}
@font-face { font-family: headFont; src: url('font/font1.otf'); }
h2{
font-size: 44px;
font-family: headFont, sans-serif;
}
</style>
</head>
<body>
<!--navbar starts here -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">EDC - JSS</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar"> <!--this is the collapse bar for navbar -->
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li class="dropdown"><!-- this is the code for drop-down menu -->
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Our Initiatives
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Ideathon</a></li>
<li><a href="#">E-Summit</a></li>
<li><a href="#">StartUp Charcha</a></li>
</ul>
</li>
<li><a href="#">Teams</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
<!-- navbar ends here -->
<div class="main">
<!-- image carousel begins from here time = 11:18 pm -->
<div id="carousel" class="section carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="media/bulb.jpeg">
</div> <!-- End Active -->
<div class="item">
<img src="media/snow.jpeg">
</div>
<div class="item">
<img src="media/fire.jpeg">
</div>
</div>
<a class="left carousel-control" href="#carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- image carousel ensds here -->
<!-- About Us element -->
<div class="section container text-center">
<div class="row">
<div class="col-md-12">
<h2>About Us</h2>
<hr>
<p id="aboutDesc">E-Cell, JSSATE Noida assists budding entrepreneurs by lending them a platform to materialise an ‘IDEA’ to a ‘PRODUCT’. Big time, you little wizards personify to successful businessmen upholding entrepreneurship as a career option and set a razzle-dazzle innovative exemplar. JSS E-Cell is a non-profit organisation which will act as a platform for association of likeminded students who would eventually loom as “employment creators” rather than “employment seekers”.</p>
<br>
</div>
<div class="col-md-6">
<img src="media/work.png" id="aboutImg" class="img-responsive">
</div>
<div class="col-md-6" style="text-align: left;">
<ul style="list-style-type: none;" id="aboutStep">
<li><img src="media/step.png"> Small and Medium enterprises play a vital role for the growth of Indian economy by contributing 45% of the industrial output, 40% of exports ,42 million in employment, creates 1 million jobs every year and produces more than 8000 quality products for the Indian and International markets.</li>
<li><img src="media/step.png"> In the present scenario of low economic growth, less industrial production on one hand while on the other hand, thousands of students passing out of colleges without proper employment opportunities possess a serious threat to the stability and growth of our country.
</li>
<li><img src="media/step.png"> Entrepreneurs could offer a solution to some of these challenges by starting new businesses with new products or services. This creates jobs and a fresh opportunity for an economy to produce additional goods or services.
</li>
<li><img src="media/step.png"> In this way, entrepreneurs grow both the demands idea and the supply side of the economy. This creates opportunity and improved quality of life.
</li>
</ul>
</div>
</div>
</div>
<!-- added maps above the footer -->
<div class="row">
<div class="container-fluid">
<iframe width="100%" height="450" frameborder="0" style="border:0px; allowfullscreen;" src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJf1Y03EHlDDkRGWvWI8sn0E8&key=AIzaSyC1_A4z58bawhQ24tFAbhKFNoouQVWfRqk"></iframe>
<div class="clearfix"> </div>
</div>
</div>
<!-- About Us elements end -->
<footer class="container-fluid text-center">
<div class="row">
<div class="col-md-6">
<h2>Stay in touch !</h2>
<br>
</div>
<div class="col-md-6">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-google"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-youtube"></a>
</div>
</div>
</footer>
</div>
</body>
</html>