-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
409 lines (403 loc) · 19.5 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!DOCTYPE html>
<html lang="en">
<head>
<title>IIITA - BDA</title>
<meta charset="utf-8" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="icon" type="image/png" href="./iiit.png" />
<link
rel="stylesheet"
href="https://www.w3schools.com/w3css/4/w3.css"
/>
<link rel="stylesheet" href="./CSS/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"
/>
<script>
var slideIndex = 1;
//showDivs(slideIndex);
function plusDivs(n) {
showDivs((slideIndex += n));
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length - 1) {
slideIndex = 1;
}
if (n < 1) {
slideIndex = x.length;
}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex - 1].style.display = "block";
}
setInterval(function () {
showDivs(slideIndex++);
}, 5000);
</script>
</head>
<body onload="plusDivs(-1)">
<nav class="navbar navbar-default" style="background: white">
<div class="container-fluid">
<div class="navbar-header">
<a href="http://iiita.ac.in"
><img
src="./IIIT_logo_transparent.gif"
class="navbar-brand"
height="60px"
/></a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="./index.html">Home</a></li>
<li><a href="./research.html">Research </a></li>
<li><a href="./publications.html">Publications </a></li>
<li><a href="./workshop.html">Workshops</a></li>
<li><a href="./committee.html">Committee</a></li>
<li><a href="./teaching.html">Teaching</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./team.html">Team</a></li>
<li><a href="./contact.html">Contact</a></li>
<li>
<a href="./type.html">Login</a>
</li>
</ul>
</div>
</nav>
<div id="head_bg">
<!-- <center><img src="./head_main.jpg" width="60%" /></center> -->
<center><h1>Big Data Analytics Lab</h1></center>
<img
src="./IIIT_logo_transparent.gif"
alt="lOGO"
srcset=""
class="iiit_logo"
/>
</div>
<div class="row" style="padding: 20px">
<div class="col-sm-8">
<div class="container-fluid">
<div class="card" style="padding: 40px">
<div
class="w3-content w3-display-container"
style="width: 100%; height: 500px"
>
<img
class="mySlides"
src="./PIC/pic0.jpg"
style="
width: 100%;
height: 500px;
object-fit: cover;
"
/>
<img
class="mySlides"
src="./PIC/pic1.jpg"
style="
width: 100%;
height: 500px;
object-fit: cover;
"
/>
<img
class="mySlides"
src="./PIC/pic2.jpg"
style="
width: 100%;
height: 500px;
object-fit: cover;
"
/>
<img
class="mySlides"
src="./PIC/pic3.jpg"
style="
width: 100%;
height: 500px;
object-fit: cover;
"
/>
<img
class="mySlides"
src="./PIC/pic4.jpg"
style="
width: 100%;
height: 500px;
object-fit: cover;
"
/>
<button
class="w3-button w3-black w3-display-left"
onclick="plusDivs(-1)"
>
❮
</button>
<button
class="w3-button w3-black w3-display-right"
onclick="plusDivs(1)"
>
❯
</button>
</div>
<h2><br />About - BDA Lab</h2>
<p
style="
text-align: justify;
text-justify: inter-word;
"
>
In the past decade, we have witnessed the emergence
of data-intensive applications that involve massive
data flows and real-time decision-making. The
increasing volume of data sources and recent
business demands established data science as one of
the most rapidly expanding fields. Data science
combines mathematics and statistics, highly
specialised programming, advanced analytics,
artificial intelligence (AI), and machine learning
with subject matter expertise to extract actionable
insights from an organization's data. The primary
objective of the Core Data Science (CDS 2022)
workshop is to bring together individuals who are
building the foundation for data science and its
applications in science, engineering, technology,
and society. This workshop will provide a
knowledge-sharing platform to highlight advances in
mathematical, statistical, and computational methods
in the context of data and information sciences. CDS
2022 will also highlight challenges and advancements
in data science ethics and fairness. It is essential
to raise awareness of data science among researchers
and academics in order to conduct innovative
research and create a knowledge base.
</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card" style="">
<div
style="
color: white;
background-color: rgb(1, 41, 112);
padding: 1rem;
font-size: 1.5rem;
"
>
News
</div>
<marquee
scrollamount="2"
onmouseover="this.stop();"
onmouseout="this.start();"
direction="up"
style="height: 150px; padding: 1rem"
>
<ul class="news-container"></ul>
</marquee>
<hr />
</div>
<div class="card" style="margin-top: 20px">
<div
style="
color: white;
background-color: rgb(1, 41, 112);
padding: 1rem;
font-size: 1.5rem;
"
>
Vision and Mission
</div>
<p
style="
text-align: justify;
text-justify: inter-word;
padding: 1rem;
"
>
At the Big Data Analytics Lab of IIITA, our vision is to
become a global leader in big data research and
education. We aim to drive innovation and advancements
in big data analytics by conducting cutting-edge
research, developing new technologies, and collaborating
with industry and academic partners. Our ultimate goal
is to leverage the power of big data analytics to solve
complex problems and create value for society.
</p>
</div>
</div>
</div>
<div class="scroll-top">
<i class="fa fa-angle-up"></i>
</div>
<section class="footer-section" style="padding: 100px 0">
<div class="footer_container">
<div class="pre-footer">
<ul class="list">
<li class="list-head">
<h6
style="
font-weight: 700;
font-size: 1rem;
margin-bottom: 0.5rem;
line-height: 1.2;
"
>
About IIITA
</h6>
</li>
<li class="list-body">
<p>
Established in 1999, as a Centre of Excellence
in Information Technology and allied areas, by
the Government of India, the IIIT-A is currently
an institute of national importance, which is
governed by the act of parliament, IIIT
Act-2014.
</p>
</li>
<li class="list-body text-center">
<div class="social-links"></div>
</li>
</ul>
<ul class="list">
<li class="list-head">
<div
style="
font-weight: 700;
font-size: 1rem;
margin-bottom: 0.5rem;
line-height: 1.2;
"
>
Useful Links
</div>
</li>
<li class="list-body">
<div class="row1">
<div class="col1">
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="workshop.html">Workshops</a>
</div>
<div class="col1">
<a href="committee.html">Committee</a>
<a href="teaching.html">Teaching</a>
<a href="projects.html">Project</a>
<a href="contact.html">Contact</a>
</div>
</div>
</li>
</ul>
<ul class="list">
<li class="list-head">
<div
style="
font-weight: 700;
font-size: 1rem;
margin-bottom: 0.5rem;
line-height: 1.2;
"
>
Contact Info
</div>
</li>
<li class="list-body">
<div style="display: flex; align-items: center">
<div style="margin-right: 10px; width: 1rem">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z"
/>
</svg>
</div>
Dr. Sonali Agarwal
</div>
<div style="display: flex; align-items: center">
<div style="margin-right: 10px; width: 1rem">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 384 512"
>
<!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M80 0C44.7 0 16 28.7 16 64V448c0 35.3 28.7 64 64 64H304c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H80zm80 432h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z"
/>
</svg>
</div>
+91-9415648188
</div>
<div style="display: flex">
<div style="margin-right: 10px; width: 1.5rem">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 384 512"
>
<!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"
/>
</svg>
</div>
Indian Institute of Information Technology
Allahabad Devghat, Jhalwa, Prayagraj-211015, U.
P. INDIA
</div>
<div style="display: flex; align-items: center">
<div style="margin-right: 10px; width: 1rem">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"
/>
</svg>
</div>
</div>
</li>
</ul>
</div>
</div>
</section>
<script src="./JS/index.js"></script>
<script>
const getNews = async () => {
let res = await fetch("http://localhost:8080/news");
let data = await res.json();
return data;
};
const newsContainer = document.querySelector(".news-container");
getNews().then((data) => {
data.data.forEach((news) => {
newsContainer.innerHTML += `
<li>
<a href=${news.link}target="_blank"><b style="color: rgb(12, 0, 82)">${news.title}</b></a>
<br />
</li>
<br />
`;
});
});
</script>
</body>
</html>