-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
152 lines (134 loc) · 4.83 KB
/
about.html
File metadata and controls
152 lines (134 loc) · 4.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About WIISER</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.header {
padding: 40px 0;
border-bottom: 1px solid #eee;
}
.header h1 {
font-size: 2.5rem;
margin: 0;
font-weight: 700;
color: #2196f3 ;
}
.content {
padding: 40px 0;
}
.content p {
font-size: 1.1rem;
margin-bottom: 24px;
}
.team-section {
margin-top: 60px;
}
.team-member {
display: flex;
align-items: flex-start;
margin-bottom: 40px;
padding-bottom: 40px;
border-bottom: 1px solid #eee;
}
.profile-image {
width: 120px;
height: 120px;
border-radius: 50%;
margin-right: 30px;
background-color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
}
.member-info h2 {
margin: 0 0 10px 0;
font-size: 1.8rem;
}
.member-title {
font-size: 1.1rem;
color: #666;
margin-bottom: 15px;
font-style: italic;
}
.back-button {
display: inline-block;
margin-top: 40px;
padding: 10px 20px;
color: #666;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.back-button:hover {
background-color: #f5f5f5;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 20px;
background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
display: flex;
justify-content: center;
backdrop-filter: blur(5px);
}
.back-link {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 24px;
background-color: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 8px;
text-decoration: none;
color: #4a5568;
font-family: system-ui, -apple-system, sans-serif;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.back-link:hover {
background-color: #fff;
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.back-link svg {
width: 16px;
height: 16px;
}
</style>
</head>
<body>
<div class="header">
<h1>About WIISER</h1>
</div>
<div class="content">
<p>Welcome to WIISER, your one-stop destination for quality study material tailored specifically for the students of IISER Pune. Our platform is designed to provide comprehensive academic resources, empowering students to excel in their coursework and research.</p>
<p>At WIISER, we believe in the power of collaborative learning. Our repository includes lecture notes, practice questions, previous year papers, reference materials, and interactive resources curated by fellow IISER Pune students. Whether you're preparing for exams, working on assignments, or exploring advanced topics, WIISER is here to support your academic journey.</p>
<p>Our mission is to foster a culture of knowledge sharing and academic excellence within the IISER Pune community. We continuously strive to expand our collection, ensuring access to the most relevant and up-to-date content across various subjects and disciplines.</p>
<p>Join us in creating a vibrant learning ecosystem where knowledge grows through sharing and collaboration. Explore WIISER today and take your learning experience to new heights!</p>
</div>
<br>
<br>
<footer class="footer">
<a href="index.html" class="back-link" >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M19 12H5M12 19l-7-7 7-7"/>
</svg>
Back to Home
</a>
</footer>
</body>
</html>