-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
456 lines (394 loc) · 12.7 KB
/
feedback.html
File metadata and controls
456 lines (394 loc) · 12.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IISERites OWN Platform</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
body {
background-image: url('images/bg.jpg'); /* Replace with your image path */
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 100vh;}
content-wrapper {
position: relative;
z-index: 1;
width: 100%;
min-height: 100vh;}
@media screen and (max-width: 768px) {
body {
/* Adjust background properties for mobile devices if needed */
background-attachment: scroll;
}
}
/* Header Styles */
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-bottom: 1px solid #e0e0e0;
}
.logo {
color: #2196f3;
font-size: 1.5rem;
font-weight: bold;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
display: block;
text-decoration: none;
color: #333;
float:left;
}
.nav-links a:hover {
color: #2196f3;
}
.auth-buttons {
display: flex;
gap: 1rem;
}
.btn {
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
}
.btn-primary {
background-color: #000;
color: white;
border: none;
}
.btn-primary:hover{
background-color: #2196f3;}
.btn-outline {
border: 1px solid #333;
background: none;
}
.btn-outline:hover{
color: #2196f3;
}
/* Hero Section */
.hero {
display: flex;
padding: 4rem 2rem;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.hero-content {
flex: 1;
}
.hero-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
color: #666;
margin-bottom: 2rem;
line-height: 1.6;
}
/* Features Section */
.features {
padding: 4rem 2rem;
background-color: #f8f9fa;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.feature-card h3 {
margin-bottom: 1rem;
}
.feature-list {
list-style: none;
}
.feature-list li {
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
/* Stats Section */
.stats {
padding: 4rem 2rem;
text-align: center;
max-width: 1200px;
margin: 0 auto;
}
.stat-grid div {
border-radius: 16px;
border: 2px solid black;
background: white;
max-width: 600px;
margin:60px 45px;
text-align: center;
gap: 2rem;
display: inline-block;
overflow:scroll;
}
.mark{
color: #000;
padding-top: 4px;
}
.review-card {
padding: 12px;
box-shadow: 0 4px 12px #2196f3;
}
.review-quote {
font-size: 16px;
color: #4a5568;
line-height: 1.5;
margin-bottom:8px;
font-weight: 300;
}
.review-stars {
color: #fbbf24;
font-size: 18px;
margin-bottom: 8px;
}
.review-author {
text-align: center;
}
.author-name {
font-size: 22px;
font-weight: 600;
color: #1a202c;
margin: 8px 0 4px 0;
}
.author-title {
font-size: 16px;
color: #718096;
margin: 0;
}
.footer {
background-color: #f8f9fa;
padding: 3rem 0;
margin-top: 4rem;
border-top: 1px solid #e9ecef;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.footer-section h3 {
color: #212529;
font-size: 1.25rem;
margin-bottom: 1rem;
font-weight: 600;
}
.footer-section ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section ul li a {
color: #6c757d;
text-decoration: none;
transition: color 0.2s ease;
}
.footer-section ul li a:hover {
color: #2196f3;
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid #e9ecef;
color: #6c757d;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
color: #6c757d;
text-decoration: none;
transition: color 0.2s ease;
}
.social-links a:hover {
color: #0d6efd;
}
.fimg{
float: right;
margin: 3px;
border-radius: 50%;
}
.feature-card p{
text-align: justify;
}
</style>
</head>
<body>
<header class="header">
<div class="logo">WIISER</div>
<nav class="nav-links">
<a href="index.html">Home</a>
<a href="notes.html">Notes</a>
<a href="pyq.html">PYQ's</a>
<a href="assig.html">Assignments</a>
<a href="lab.html">Lab Work</a>
<a href="refer.html">References</a>
</nav>
<div class="auth-buttons">
<a href="team.html"><button class="btn btn-outline">Contact Us</button></a>
<a href="https://chat.whatsapp.com/LfTrZnIdKD8KfrW7go4Vbo"><button class="btn btn-primary">Join us </button></a>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h1>IISERites own Platform</h1>
<br>
<p> A place where all of you can access standard books,well written notes, Assignments, Previous year papers, Lab work and various reference links to increase your understanding .</p>
<div class="auth-buttons">
<button class="btn btn-primary">Register with Google</button>
<button class="btn btn-outline">Register with Email</button>
</div>
</div>
<div class="hero-image">
<img src="images/charnew.svg" width="625px">
</div>
</section>
<section class="features">
<div class="features-grid">
<div class="feature-card">
<h3>Learners</h3>
<img src="images/home logo.png" class="fimg" width="90px">
<p>Take a deep dive into the notes, PYQ's, Assignments, and boost acadamically</p>
<br>
<ul class="feature-list">
</ul>
</div>
<div class="feature-card">
<h3>Developers</h3>
<p>An effort from our side to make the availablity of resources easy and in an innovative way. </p>
<br>
</div>
<div class="feature-card">
<h3>Take Help</h3>
<img src="images/chatgpt.png" width="80px" class="fimg">
<p>Click on button below to resolve doubts and queries</p>
<br>
<div class="auth-buttons">
<a href="https://chatgpt.com"><button class="btn btn-primary"><h2>Open AI</h2></button></a>
<!--<br>
<ul class="feature-list">
<li></li>
<li></li>
<li></li>
</ul>-->
</div>
</div>
</section>
<section class="stats">
<h2>Tackle your next semester with WIISER</h2>
<div class="stat-grid">
<marquee class="mark" loop="">
<div class="review-card">
<p class="review-quote">Please give us feedbacks regarding the website</p>
<p class="review-stars">WIISER </p>
<p class="author-name">Developer </p>
<p class="author-title">Student IISERP</p>
</div>
<div class="review-card">
<p class="review-quote">The User Interface of this website is very nice an interactive</p>
<p class="review-stars"> ★★★★☆</p>
<p class="author-name">Vansh Kumar</p>
<p class="author-title">Student</p>
</div>
</div>
<div class="review-card">
<p class="review-quote">The website is a storehouse of relatable content</p>
<p class="review-stars"> ★★★★☆</p>
<p class="author-name">Shriyansh</p>
<p class="author-title">Student </p>
</div>
</div>
</marquee>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>About</h3>
<ul>
<li><a href="about.html">About IISERites Platform</a></li>
<li><a href="team.html">Our Team</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Join Us</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Resources</h3>
<ul>
<li><a href="notes.html">Notes</a></li>
<li><a href="pyq.html">PYQ's</a></li>
<li><a href="lab.html">Lab Work</a></li>
<li><a href="assig.html">Assignments</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Help & Support</h3>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<ul>
<li><a href="#">Discord Community</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSdMNcwCzbSFqGQW6QpCoPMwDUpNbkEVbY6NkgaFrVm_fSCGHA/viewform?usp=sharing">Feedback</a></li>
<li><a href="#">Report an Issue</a></li>
</ul>
<div class="social-links">
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-insta"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 WIISER. All rights reserved.</p>
</div>
</footer>
</body>
</html>
</body>
</html>