-
Notifications
You must be signed in to change notification settings - Fork 0
/
report2.txt
192 lines (164 loc) · 5.62 KB
/
report2.txt
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
records.html
------------
<head>
<style>
.bg-1 {
background-color: #1abc9c; /* Green */
color: #ffffff;
}
.bg-2 {
background-color: #474e5d; /* Dark Blue */
color: #ffffff;
}
.bg-3 {
background-color: #ffffff; /* White */
color: #555555;
}
</style>
</head>
<body>
<div class="container-fluid bg-1 text-center">
<h3>PLACEMENT RECORDS</h3>
<img src="assets/image/place.jpg" alt="PLACEMENT RECORD GRAPH">
<h3>Placement Statistics From 2006 onwards</h3>
SNGCE has enjoyed an excellent placement record over the years. The Placement Cell, with its exuberant team, plays the pivotal role in molding the students to become industry ready and in providing them the wonderful opportunity to get recruited in organizations of international fame. The Placement Cell embarks on its responsibility of training with the orientation program provided to freshers, aiming at bridging the gap between higher secondary and professional level education. The communicational competency and performance of students is improved through well-equipped language labs and interactive classroom sessions. The employability enhancement is further done through intensive aptitude training throughout the semesters, outsourced soft skills training programmes, internal mock recruitment drives and industrial visits. To keep at par with the changing industrial trends, eminent personalities and resource persons of national and international repute are invited to the college to interact with students. Moreover, the student wing of the Placement Cell named "Chrysalis", consisting of students from each department, also provides them the opportunity to coordinate recruitment drives and the activities of the Cell. A career guidance cell is also functioning under the Placement Cell for guiding the students on ad-on courses and better career prospects.
</div>
</body>
records.specs.ts
----------------
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RecordsComponent } from './records.component';
describe('RecordsComponent', () => {
let component: RecordsComponent;
let fixture: ComponentFixture<RecordsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RecordsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RecordsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
records.ts
----------
import { Component, OnInit } from '@angular/core';
import { NotifierService } from 'angular-notifier';
import { Router } from '@angular/router';
import { EocCacheService } from '../common-services/cache-service';
@Component({
selector: 'app-home',
templateUrl: './records.component.html',
styleUrls: ['./records.component.css']
})
export class RecordsComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
recruiters.css
--------------
.card-deck {
padding-top: 65px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 65px;
}
.carousel-control.right, .carousel-control.left {
background-image: none;
color: #f4511e;
}
.carousel-indicators li {
border-color: #f4511e;
}
.carousel-indicators li.active {
background-color: #f4511e;
}
.item h4 {
font-size: 19px;
line-height: 1.375em;
font-weight: 400;
font-style: italic;
margin: 70px 0;
}
.item span {
font-style: normal;
}
recruiters.html
---------------
<div class="container-fluid bg-3 text-center">
<h3>OUR RECRUITERS</h3>
<div class="row">
<div class="col-sm-4">
<img src="assets/image/ibm.png" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/aaba.png" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/mph.jpg" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/cere.jpg" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/ruby.jpg" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/tec.png" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/infos.png" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/ibs.jpg" alt="Image">
</div>
<div class="col-sm-4">
<img src="assets/image/sic.png" alt="Image">
</div>
</div>
</div>
recruiters.spec.ts
------------------
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RecruitersComponent } from './recruiters.component';
describe('RecruitersComponent', () => {
let component: RecruitersComponent;
let fixture: ComponentFixture<RecruitersComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [RecruitersComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RecruitersComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
recruiters.ts
-------------
import { Component, OnInit } from '@angular/core';
import { NotifierService } from 'angular-notifier';
import { Router } from '@angular/router';
import { EocCacheService } from '../common-services/cache-service';
@Component({
selector: 'app-recruiters',
templateUrl: './recruiters.component.html',
styleUrls: ['./recruiters.component.css']
})
export class RecruitersComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}