-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudent.html
More file actions
298 lines (281 loc) · 8.33 KB
/
Copy pathstudent.html
File metadata and controls
298 lines (281 loc) · 8.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #fafafa;
}
nav{
margin: 3% auto;
height: 80px;
width: 100%;
background-color: #fff;
color: #333333;
display: flex;
justify-content: space-around;
padding: 0px 0px;
align-items: center;
font-size: 16px;
font-weight: 400px;
border-radius: 3px;
box-shadow: 0px 5px 20px -17px rgba(0,0,0,0);
position: relative;
font-family: Arial, Helvetica, sans-serif;
}
.left a{
font-weight: 600;
width: 250px;
height: 50px;
}
nav a{
color: #333333;
text-transform: capitalize;
text-decoration: none;
transition: all 0.5s;
}
.list{
display: flex;
list-style: none;
text-transform: capitalize;
}
.list li{
margin-left: 20px;
}
.active{
color: rgb(5,223,38);
}
.list a:hover{
color: rgb(5,233,38);
}
#check{
display: none;
}
#toggle{
display: none;
}
@media(max-width:800px){
#check{
display: inline;
}
nav{
justify-content: space-between;
}
.list{
flex-direction: column;
height: max-content;
}
.list{
flex-direction: column;
height: max-content;
background-color: #fff;
width: 100%;
position: absolute;
left: 0%;
top: 80px;
text-align: left;
transition: all 0.5s;
transform: scaleY(0);
transform-origin: top;
box-shadow: opx 5px 20px -17px rgba(0,0,0,0);
padding: 20px;
}
.list li{
margin: 20px 0;
}
#toggle:checked ~ .list{
transform: scaleY(1);
}
}
.img-fluid{
max-width: 40%;
height: auto;
padding-left: 20px;
}
.main-heading{
text-shadow: 3px 2px 6px rgba(0,0,0,.3);
font-weight: 700;
border: none;
}
h2{
font-size: 1.75rem;
padding: 20px;
display: inline-block;
}
.img1{
width: 100%; /* Adjust the width as needed */
height: 80%;
margin: auto;
/* border: solid 5px; */
float: left;
padding: 30px;
}
.login-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #fbf1f1; /* Set the background color for the login section */
}
.courses{
max-width: 500px;
padding: 30px;
background: beige;
border-radius: 35px;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
margin: 30px;
display: inline-block;
}
.courses label {
display: block;
margin-bottom: 10px;
margin-top: 10px;
}
#heading{
max-width: 500px;
padding: 10px;
background: rgb(255, 165, 0);
border-radius: 35px;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
margin: 30px;
text-align: center;
color: white;
align-content: center;
}
#heading label {
display: block;
margin-bottom: 10px;
margin-top: 10px;
}
.logo{
width: 45%;
padding-left: 100px;
}
.courses1{
max-width: 800px;
padding: 30px;
background: beige;
border-radius: 50px;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
margin: 30px;
display: inline-block;
}
.courses1 label {
display: block;
margin-bottom: 10px;
margin-top: 10px;
}
.courses2{
max-width: 1400px;
padding: 30px;
background: beige;
border-radius: 50px;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
margin: 30px;
display: inline-block;
}
.courses2 label {
display: block;
margin-bottom: 10px;
margin-top: 10px;
}
</style>
</head>
<body>
<nav>
<div class="left">
<a href="#">
<img src="ums-removebg-preview.png" class="img-fluid">
</a>
</div>
<div class="right">
<label for="toggle" id="check"><iconigy-icon icon="gg:menu-round" style="color: rgb(35,35,142);"></iconigy-icon></label>
<input type="checkbox" name="toggle" id="toggle">
<ul class="list">
<li><a href="student.html" class="active">home</a></li>
<li><a href="https://conferences.lpu.in/ichpi/about-lpu.php#:~:text=Lovely%20Professional%20University%20(LPU)%20is,and%20started%20operation%20in%202006.">about us</a></li>
<!-- <li><a href="#">service</a></li> -->
<!-- <li><a href="#">blog</a></li> -->
<li><a href="https://conferences.lpu.in/ichpi/contact.php">contact</a></li>
<li><p><B>12322585 K23HT</B></p></li><br>
</ul>
</div>
</nav>
<h2 class="main-heading">Important Links and Information</h2>
<br>
<hr><br>
<img src="Screenshot 2023-11-19 at 12.59.36 AM.png" class="img1">
<br>
<hr><br>
<div class="courses">
<h2 id="heading">My Courses</h2>
<p>CHE110:ENVIRONMENTAL STUDIES</p>
<br>
<hr>
<br>
<p>CSE111:ORIENTATION TO COMPUTING-I</p>
<br>
<hr>
<br>
<p>CSE326:INTERNET PROGRAMMING LABORATORY</p>
<br>
<hr>
<br>
<p>ECE249:BASIC ELECTRICAL AND ELECTRONICS ENGINEERING</p>
<br>
<hr>
<br>
<p>CE279:BASIC ELECTRICAL AND ELECTRONICS ENGINEERING LABORATORY</p>
<br><hr>
<br>
<p>INT108:PYTHON PROGRAMMING</p>
<br><hr><br>
<p>MTH174:ENGINEERING MATHEMATICS</p>
<br><hr><br>
<p>PES318:SOFT SKILLS-I</p>
</div>
<img src="lpu-poup.jpg" alt="A++" class="logo">
<br><hr><br><br>
<h2 class="main-heading">Placement Details</h2>
<br>
<hr><br><br>
<div class="courses1">
<h2 id="heading">Recently Placed</h2>
<br><br><br><br><br><br><br>
<br><br><br><br><br><br><br>
</div>
<div class="courses1">
<h2 id="heading">Today's Placement Drives</h2>
<p>EXPAND MY BUSINESS (EXMYB) - Batch 2024<br>
Stream : CSE/IT,MBA<br><br>
Salary Package : Stipend Rs. 15000 PM During Internship Period Then CTC Rs. 4 LPA To CTC Rs. 6 LPA<br><a href="">Click Here</a></p>
<br><br><br><br><br><br><br><br><br><br>
</div>
<br><hr><br><br>
<h2 class="main-heading">Important Announcements</h2><br><hr><br><br>
<div class="courses2">
<h2 id="heading">Announcements</h2>
<h4>Regarding the extension for uploading of compulsory Information by the students who opt to stay outside university premises for Term -23241 (August-December, 2023)</h4><br>
<p>Nov 16,2023<br>
This is in reference to the announcement uploaded on UMS dated 14th, 16th, 30th September 2023, 3rd Oct, 9th Oct 2023, 11th Oct 2023, 25th Oct 2023 and 2nd Nov 2023 “Regarding Submission of accommodation disclosure undertakings by students who opt to stay outside university premises for Term -23241 (August-December, 2023)”.<br><br>
Continuous requests have been received from some of the students that they need some time to arrange the accommodation related documents as per the requirement of the university.<br><br>
Considering the request of the students, it’s informed that required documents can be uploaded by 25th November 2023 from UMS at Important Links - >Compulsory Accommodation Details link now.<br><br>
Important Note: As the information is to be shared with local authorities on demand, the information needs to be compulsorily uploaded by the above mentioned date, failing which the student will not be allowed to attend the classes till uploading of the required documents.<br><br>
For queries/concerns related to Accommodation documents submission, You can book a prior appointment from UMS at Important Links- Appointment System (Accommodation Disclosure) and then visit 30-501 between 9:00am to 5:00pm or can write at accommodation.manage@lpu.co.in.<br><br>
Uploaded by:<br>
Office of HOD<br>
Accommodation Management Team<br><a href="">Click Here</a></p>
</div>
<br>
<hr>
<br>
<p>Lovely Professional University 2023</p><br>
</body>
</html>