-
Notifications
You must be signed in to change notification settings - Fork 2
/
esummit.html
156 lines (140 loc) · 6.21 KB
/
esummit.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
<!DOCTYPE html>
<html>
<head>
<title>E-Summit</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">
<link rel="stylesheet" type="text/css" href="css/landing-page.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet">
<link rel="icon" href="media/icon.png">
<style type="text/css">
.item {
max-height: 750px;
background-size: contain;
}
.carousel-caption {
top: 45%;
transform: translateY(-30%);
text-transform: uppercase;
}
#social-links {
top: 85%;
transform: translateY(-10%);
transform: translateX(0%);
}
p {
font-size: 1.3em;
}
h1 {
font-size: 4.3em;
}
#about {
display: none;
}
@media(max-width: 480px) {
.carousel-caption {
display: none;
}
#icon {
max-width: 150px;
}
h2 {
font-size: 1.9em;
}
#about {
display: block;
}
}
.active {
color: #fff;
}
</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="#"><img src="media/logo.png" id="navlogo" class="img-responsive"></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<!--this is the collapse bar for navbar -->
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li class="dropdown">
<!-- this is the code for drop-down menu -->
<a class="dropdown-toggle active" data-toggle="dropdown" href="#">Our Initiatives
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="ideathon.html">Ideathon</a></li>
<li><a href="esummit.html">E-Summit</a></li>
<li><a href="startupcharcha.html">StartUp Charcha</a></li>
</ul>
</li>
<li><a href="team.html">Team</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
<div id="carousel" class="section carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="media/esummit/12.jpg">
<div class="carousel-caption">
<h1>E-Summit - 2017</h1>
<hr>
<p>E-Summit was organized on 4-5 March, 2017 at JSSATE NOIDA. 600+ students from various colleges across NCR participated in this event</p>
</div>
<div class="carousel-caption" id="social-links">
<a href="https://www.facebook.com/ecell.jssaten/" target="_blank" class="fa fa-facebook"></a>
<a href=" https://www.linkedin.com/company/7945114/" target="_blank" class="fa fa-twitter"></a>
<a href="https://www.youtube.com/channel/UC2cL8l0aPdqL7ONVCx9ReEQ" target="_blank" class="fa fa-youtube"></a>
</div>
</div>
<!-- End Active -->
<div class="item">
<img src="media/esummit/17.jpg">
</div>
<div class="item">
<img src="media/esummit/7.jpg">
</div>
<div class="item">
<img src="media/esummit/5.jpg">
</div>
<div class="item">
<img src="media/esummit/6.jpg">
</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>
<div class="section container-fluid text-center about" id="about">
<div class="row">
<div class="col-md-12">
<h2 id="aboutus">E-Summit</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>
</div>