-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfsd.html
483 lines (410 loc) · 15.5 KB
/
fsd.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<!DOCTYPE html>
<html>
<head>
<title>FSD</title>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
body {
font-family: 'Montserrat', sans-serif;
background-image: url(bg-page6.jpg );
}
.main {
margin: 2%;
}
.card {
width: 20%;
display: inline-block;
box-shadow: 2px 2px 20px black;
border-radius: 25px;
margin: 2%;
}
.image img {
width: 100%;
border-top-right-radius: 25px;
border-top-left-radius: 25px;
transform: ease-in-out;
}
.title {
text-align: center;
padding: 10px;
}
h1 {
font-size: 20px;
color: black;
text-align: center;
}
.des {
padding: 3px;
text-align: center;
padding-top: 10px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
button {
margin-top: 40px;
margin-bottom: 10px;
background-color: rgb(202, 132, 132);
border: 1px solid black;
border-radius: 5px;
padding: 10px;
}
button:hover {
background-color: black;
color: rgb(161, 112, 112);
transition: .5s;
cursor: pointer;
}
.navbar {
width: auto;
height: 4.5rem;
display: flex;
align-items: center;
justify-content: space-between;
background: #fff;
}
.logo {
width: 250px;
cursor: pointer;
height: 60px;
}
.navbar ul li {
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar ul li a {
text-decoration: none;
color: rgb(12, 12, 12);
text-transform: uppercase;
font-size: 14px;
}
.navbar ul li::after {
content: '';
height: 3px;
width: 0%;
background: #ff5d06;
position: absolute;
left: 0;
bottom: -10px;
transition: 0.5s;
}
.navbar ul li:hover::after {
width: 100%;
}
/* footer// */
<!-- @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap"); -->
* {
padding: 0;
margin: 0;
box-sizing: border-box;
/* font-family: open sans; */
transition: ease 0.5s;
text-decoration: none;
list-style-type: none;
font-family: 'Montserrat', sans-serif;
}
/* body {
background: #5b5b5c;
} */
footer {
background: #5b5b5c;
width: 100%;
max-width: 100%;
margin: 0 auto;
margin-top: 50px;
border-radius: 0px;
/* box-shadow: #434444 0 10px 20px 5px; */
padding: 30px;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
}
.main {
width: 100%;
display: flex;
gap: 50px;
flex-wrap: wrap;
}
.heading {
margin-bottom: 15px;
color: white;
}
.col1 {
flex: 1;
min-width: 200px;
color: white;
}
.col2 {
flex: 2;
min-width: 300px;
color: white;
}
.col3 {
flex: 1;
min-width: 200px;
color: white;
}
.col1 a {
display: inline-block;
padding: 7px 0;
font-size: 14px;
color: white;
}
.col1 a:hover {
color: #58bed5;
}
.col2 .languages {
display: flex;
flex-wrap: wrap;
gap: 10px;
font-size: 14px;
color: white;
}
.col2 a {
display: inline-block;
padding: 3px 5px;
border-radius: 3px;
color: white;
}
.col2 a:hover {
background: #58bed5;
}
.social {
display: flex;
gap: 20px;
color: white;
}
.col3 ion-icon {
font-size: 30px;
color: white;
}
.social a:hover ion-icon {
color: #5ac1d8;
}
.terms {
display: flex;
gap: 20px;
font-size: 12px;
color: white;
}
.terms a {
color: #7783a0;
}
</style>
</head>
<body>
<div class="navbar">
<img src="https://www.sreenidhi.edu.in/assets/images/sreenidhi-logo.png" alt="img" class="logo">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="placements.html">Placement Details</a></li>
<li><a href="companies.html">Companies</a></li>
<li><a href="whysnist.html">Why SNISTians?</a></li>
<li><a href="fsd.html">FSD Role</a></li>
<li><a href="cdc.html">CDC Team</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<br><br><br>
<h1>All About Full Stack Developer</h1><br><br>
<p>1.However, resources to become a Full Stack Developer are limited and only offer sections or just random technologies that you must learn and combine on your own. So, we introduced this course that compiles all technologies in perfect sync to help
developers transition from a simple developer to become a Full Stack Developer.</p><br>
<p>2.Starting from frontend development, the learner will slowly progress to become to other aspects of development including backend, database, debugging, version control and other essential technologies that are helpful for a developer.</p><br>
<p>3.Our Full Stack Course breaks down the fundamentals of each technology that you would require to become a Full Stack Developer. The entire course is broken down into five separate segments: Frontend, Backend, Database, Other Essential Technologies
and Debugging/Version Control. Each section includes multiple technologies to help you gain more experience as a developer.</p><br>
<h1 style="text-align:center">Who This Course is for?</h1><br>
<br>
<p> - Student who want to become the Full Stack Web Developers will find this course very beneficial.</p><br>
<p> - Front end Developers who want to learn backend programming.</p><br>
<p> - Backend developers who want to learn front end programming concepts.</p><br>
<!--<p>Being good teachers is not an easy task, because they need to integrate many factors to induce students in a successful learning process. Scrivener states that “a teacher is for helping learning to happen by using appropriate methodology, materials,
activities in order to reach a goal”. Harmer Being in front of a group of people implies a lot of preparation to deal with different kinds of learners, being flexible, adapting activities according to students’ needs, designing different materials,
planning a meaningful and pleasant lesson in order for learning to occur. Good teachers have to perform different roles such as model, monitor, guide, controller, assessor or tutor, during the lesson according to the situation.</p><br>
<p>A teacher has an important place not only in student life but also in every phase of life. They have all qualities which they distribute in their students. They know that not everyone has the same ability to receive, so a teacher observes all
the abilities of each of their students and in the same way, they teach children.</p><br>
<p></p>-->
<br>
<h1>HOD STAFF</h1>
<div class="main">
<div class="card">
<div class="image">
<img src="https://www.sreenidhi.edu.in/staff%20photos/10000084.JPG" height="300" width="500"> </div>
<div class="title">
<h1>
HOD-CSE</h1>
</div>
<div class="des">
<p>Dr. Aruna Varanasi is a hardworking and enthusiastic researcher. The Department of Computer Science and Engineering has taken leaps and bounds of progress under her headship. She is a persistent pursuer to get things done by all the faculty
and staff in the department and possess very remarkable HR skills. </p>
</div>
</div>
<div class="card">
<div class="image">
<img src="https://www.sreenidhi.edu.in/staff%20photos/10000072.jpg" height="300">
</div>
<div class="title">
<h1>
HOD-IT</h1>
</div>
<div class="des">
<p>Dr. Sunil Bhutada has completed his B.E (CS) from Pusad, Amravathi University, Amravathi (M.S.), M.Tech (Software Engineering) from JNTU Hyderabad. He successfully completed his Ph.D. in the area of Data Mining, Topic Modelling from JNTU
Hyderabad in the year 2017. </p>
</div>
</div>
<div class="card">
<div class="image">
<img src=https://www.sreenidhi.edu.in/staff%20photos/10000306.jpg height="300">
</div>
<div class="title">
<h1>
HOD-ECM</h1>
</div>
<div class="des">
<p>Dr D.Mohan developing liaison with Academia, R & D institutions, software and electronics Industries for exposure of students to the practical aspects in engineering and solution of the industry oriented and societal problems interdisciplinary
subjects, so that they can have professional career or to pursue higher studies. </p>
</div>
</div>
<br><br><br><br>
<!--<h1 style="text-align:center">FSD STAFF</h1>-->
</div>
<h1>FSD STAFF</h1>
<div class="main">
<div class="card">
<div class="image">
<img src=https://sreenidhi.edu.in/staff%20photos/Jaffer.png>
</div>
<div class="title">
<h1>
Jaffer Sir</h1>
</div>
<div class="des">
<p>Associate Professor</p>
</div>
</div>
<div class="card">
<div class="image">
<img src=https://sreenidhi.edu.in/staff%20photos/Dr.N.Divya-Profile.png>
</div>
<div class="title">
<h1>
Divya Mam</h1>
</div>
<div class="des">
<p>Assistant Professor</p>
</div>
</div>
<div class="card">
<div class="image">
<img src=https://sreenidhi.edu.in/staff%20photos/10000547.JPG>
</div>
<div class="title">
<h1>
Premnath Sir</h1>
</div>
<div class="des">
<p>Assistant Professor</p>
</div>
</div>
<div class="card">
<div class="image">
<img src=https://www.sreenidhi.edu.in/staff%20photos/10000401.JPG>
</div>
<div class="title">
<h1>
Preethi Jeevan Mam</h1>
</div>
<div class="des">
<p>Assistant Professor</p>
</div>
</div>
</div>
<footer>
<div class="main">
<div class="col1">
<h3 class="heading">
About Us
</h3>
<ul>
<li>
<a href="index.html">
Home
</a>
</li>
<!-- <li>
<a href="placements.html">
Placements
</a>
</li> -->
<li>
<a href="companies.html">
Companies
</a>
</li>
<li>
<a href="fsd.html">
FSD Role
</a>
</li>
<li>
<a href="cdc.html">
CDC Team
</a>
</li>
<li>
<a href="contactus.html">
Contact us
</a>
</li>
</ul>
</div>
<div class="col2">
<h3 class="heading">
Address
</h3>
<div class="languages">
<a href="#">Sreenidhi Institute of Science & Technology</a>
<a href="#">Yamnampet, Ghatkesar</a>
<a href="#">Hyderabad - 501 301, Telangana</a>
<a href="#">info_placement@sreenidhi.edu.in</a>
<a href="#">Phone: +91 40 2763 1236 / 2764 0395</a>
<a href="#">Fax: +91 40 2764 0394 / 2764 0394</a>
<!-- <a href="#">Nederlands</a>
<a href="#">Polnisch</a>
<a href="#">Português</a>
<a href="#">pyccknṅ</a>
<a href="#">Tiéng Viêt</a>
<a href="#">Türkçe</a> -->
</div>
</div>
<div class="col3">
<h3 class="heading">
Follow Us
</h3>
<div class="social">
<a href="#">
<ion-icon name="logo-facebook"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-twitter"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</div>
</div>
</div>
<!-- <p class="terms">
<a href="#">Terms of purchase</a>
<a href="#">Security and privacy</a>
<a href="#">Newsletter</a>
</p> -->
</footer>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</html>