-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
283 lines (261 loc) · 16.5 KB
/
team.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Teams | TPI - Computer Programming Club</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="Join TPI - Computer Programming Club to learn and explore the world of coding. Our experienced instructors will guide you through the fundamentals of programming languages such as Java, Python, and C++. Whether you're a beginner looking to get started or a seasoned programmer looking to expand your skillset, our club has something for everyone. With hands-on projects, hackathons, and workshops, you'll have the opportunity to put your skills to the test and develop your knowledge in a collaborative and supportive environment. Join us today and take your programming skills to the next level!">
<meta name="keywords"
content="TPI,TPICPC,Computer Programming Club,Programming Club,Programming,Java,Python,C++,Coding,Learn,Explore,Instructors,Workshops,Hackathons,Projects,Hands-on,Skills,Knowledge,Supportive Environment,Join,Next Level">
<meta name="author" content="TPI - Computer Programming Club">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="google" content="nositelinkssearchbox">
<meta name="google" content="notranslate">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script>
tailwind.config = {
// content: [
// "./pages/**/*.{js,ts,jsx,tsx}",
// "./components/**/*.{js,ts,jsx,tsx}",
// ],
theme: {
screens: {
sm: "375px",
md: "768px",
lg: "1024px",
xl: "1440px",
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
lg: "3rem",
},
},
extend: {
colors: {
primary: "#4a83c4",
secondary: "#667085",
cpcYellow: "#fbba31",
cpcRed: "#b32a1c",
},
// backgroundImage: {
// 'hero-img': "url('/Images/Container.svg')",
// }
},
},
plugins: [],
};
</script>
</head>
<body>
<header class="bg-white">
<!-- navbar start -->
<nav class="container bg-white flex justify-between items-center">
<a href="index.html">
<img class="w-20 cursor-pointer mt-3" src="images/tpicpclogo.png" alt="">
</a>
<div id="nav-links"
class="md:static absolute bg-white left-0 top-[-100%] md:w-auto w-full flex items-center px-5">
<ul class="flex md:flex-row flex-col md:items-center md:gap-[4vw] gap-6">
<li>
<a class="hover:text-primary decoration-2 font-bold" href="index.html">Home</a>
</li>
<li>
<a class="hover:text-primary decoration-2 font-bold" href="team.html">Team</a>
</li>
<li>
<a class="hover:text-primary decoration-2 font-bold" href="blogs.html">Blogs</a>
</li>
<li>
<a class="hover:text-primary decoration-2 font-bold" href="event.html">Events</a>
</li>
<li class="md:hidden lg:flex">
<a target="_blank" href="https://www.facebook.com/tpicpc"><i
class="fa-brands fa-facebook-f hover:text-primary cursor-pointer md:px-2 text-2xl mt-2"></i>
</a>
<a target="_blank" href="https://www.youtube.com/@tpicpc"><i
class="fa-brands fa-youtube hover:text-cpcRed cursor-pointer text-2xl md:px-3 mt-2"></i>
</a>
<a target="_blank" href="https://www.instagram.com/tpicpc"><i
class="fa-brands fa-instagram hover:text-primary cursor-pointer text-2xl md:px-3 mt-2"></i>
</a>
<a target="_blank" href="https://github.com/tpicpc"><i
class="fa-brands fa-github hover:text-secondary cursor-pointer md:px-3 text-2xl mt-2"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/company/tpicpc/"><i
class="fa-brands fa-linkedin-in hover:text-cpcRed cursor-pointer text-2xl md:px-3 mt-2"></i>
</a>
</li>
</ul>
</div>
<div class="flex items-center gap-6">
<a href="https://forms.gle/DasAW1sHs5RfbYNb9" target="_blank"
class="hidden md:flex bg-primary text-white px-5 py-2 rounded-full hover:bg-secondary animate-ping absolute h-10 w-[100px]"></a>
<a href="https://forms.gle/DasAW1sHs5RfbYNb9" target="_blank"
class="hidden md:flex bg-primary text-white px-5 py-2 rounded-full hover:bg-secondary relative ">Join Now</a>
<ion-icon onclick="menuIcons(this)" name="menu"
class="text-3xl cursor-pointer md:hidden hover:text-primary"></ion-icon>
</div>
</nav>
</header>
<section class="bg-gradient-to-r from-cyan-500 to-blue-500 h-64">
<div class="container">
<h2 class="flex items-center justify-center pt-24 font-bold text-3xl md:text-6xl text-white ">Teams
</h2>
</div>
</section>
<section class="container my-20">
<div style="background: linear-gradient(89.98deg,hsla(0,0%,85%,0) .01%,#fbba31 34.37%,#fbba31.69%,hsla(0,0%,85%,0) 99.97%)"
class="flex flex-col text-center w-full mt-20 mb-10 py-2">
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-gray-900">Meet The Team</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">The core members of TPI Computer & Programming Club
</p>
</div>
<div class="flex flex-col md:flex-row justify-center ">
<div class="flex flex-col justify-center items-center text-center order-2 md:order-1 mt-6 md:mt-0">
<div class="overflow-hidden ring-4 rounded-full"> <img alt="Mursalin Islam Mubin" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full p-1 ring-primary transform
transition duration-1000 hover:scale-125" src="/images/team/mubin.jpg"></div>
<div>
<h2 class="text-primary font-bold text-xl title-font mt-3 ">Mursalin Islam Mubin</h2>
<p class=" text-sm mt-1 font-bold">Vice President</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center md:mx-12 order-1 md:order-2 mt-6 md:mt-0">
<div class="overflow-hidden ring-4 rounded-full"> <img alt="Sahinur Islam" class="w-[150px] h-[150px] lg:w-[200px] lg:h-[200px] rounded-full p-1 ring-primary transform
transition duration-1000 hover:scale-125 " src="images/team/sahinur.jpg"></div>
<div>
<h2 class="text-primary font-bold text-xl title-font mt-3">Sahinur Islam</h2>
<p class=" text-sm mt-1 font-bold">President</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center order-3 mt-6 md:mt-0 ">
<div class="overflow-hidden ring-4 rounded-full"> <img alt="Masipul Islam Siam" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full p-1 ring-primary transform
transition duration-1000 hover:scale-125" src="images/team/siam.jpg"></div>
<div>
<h2 class="text-primary font-bold text-xl title-font mt-3">Masipul Islam Siam</h2>
<p class=" text-sm mt-1 font-bold">General Secretary</p>
</div>
</div>
</div>
<div class="grid lg:grid-cols-4 xl:grid-cols-5 md:grid-cols-2 grid-rows-1 mt-10">
<div class="flex flex-col justify-center items-center text-center mt-6 md:mt-0">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt="Sajjad Ul Islam" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full ring-2 p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/Sajjad.jpg"></div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">Sajjad Ul Islam</h2>
<p class=" text-[12px] mt-1 font-bold">Assistant General Secretary</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center mt-6 md:mt-0">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt="Md Abir" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full ring-2 p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/abir.png"></div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">Md Abir</h2>
<p class=" text-[12px] mt-1 font-bold">Assistant General Secretary</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center pt-6 lg:mt-0">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt=" Mehedi Hasan" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full ring-2 p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/murad.jpg">
</div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">
Mehedi Hasan</h2>
<p class=" text-[12px] mt-1 font-bold">Treasurer
</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center md:my-8 ">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt="Dipok Roy Dip" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/dipok1.jpg"></div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">Dipok Roy Dip</h2>
<p class=" text-[12px] mt-1 font-bold">Executive Member </p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center mt-6 md:mt-0">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt="Nimur Rahman " class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full ring-2 p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/Nimur.jpg"></div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">Nimur Rahman </h2>
<p class=" text-[12px] mt-1 font-bold">Executive Member</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center pt-6 lg:mt-0">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt="Mst Rinky Akter" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full ring-2 p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/rinky.jpg">
</div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">
Mst Rinky Akter</h2>
<p class=" text-[12px] mt-1 font-bold">Executive Member</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center pt-6 lg:mt-0">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt=" Sakib Hossain" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full ring-2 p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/Sakib.png">
</div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">
Sakib Hossain</h2>
<p class=" text-[12px] mt-1 font-bold">Creative Desiginer</p>
</div>
</div>
<div class="flex flex-col justify-center items-center text-center pt-6 lg:mt-0">
<div class="overflow-hidden ring-2 rounded-full ring-cpcYellow"> <img alt="Mst Rinky Akter" class="w-[100px] h-[100px] lg:w-[150px] lg:h-[150px] rounded-full ring-2 p-1 ring-cpcYellow transform
transition duration-1000 hover:scale-125" src="images/team/Abdullah.png">
</div>
<div>
<h2 class="text-primary font-bold text-lg title-font mt-3">
Abdullah Al Kawsar</h2>
<p class=" text-[12px] mt-1 font-bold">Executive Member</p>
</div>
</div>
</div>
</section>
<footer class="bg-slate-800">
<div class="container">
<div class="lg:flex lg:justify-between">
<div class=" flex justify-center items-center">
<img class="md:h-[150px] md:w-[150px] lg:h-32 lg:w-32" src="images/TPI CPC TR -03.png" alt="">
</div>
<div class="text-center lg:w-[500px] mt-10 ">
<h1 class="text-3xl text-white">About TPI CPC</h1>
<p class="my-6 text-white">TPI CPC is the most primitive and extensive club as well as the biggest
club in Thakurgaon Polytechnic Institute.We work together to explore every field of Computer
Science .</p>
</div>
<div class="mt-10">
<div>
<h1 class="text-3xl text-white text-center">Find Us On</h1>
</div>
<div class="flex justify-center items-center mt-6">
<a target="_blank" href="https://www.facebook.com/tpicpc"><i
class="fa-brands fa-facebook-f hover:text-primary text-2xl p-3 text-white"></i></a>
<a target="_blank" href="https://www.youtube.com/@tpicpc"><i
class="fa-brands fa-youtube hover:text-cpcRed text-2xl p-3 text-white"></i></a>
<a target="_blank" href="https://www.instagram.com/tpicpc"><i
class="fa-brands fa-instagram hover:text-primary text-2xl p-3 text-white"></i></a>
<a target="_blank" href="https://github.com/tpicpc"><i
class="fa-brands fa-github hover:text-primary text-2xl p-3 text-white"></i></a>
<a target="_blank" href="https://www.linkedin.com/company/tpicpc/"><i
class="fa-brands fa-linkedin-in hover:text-cpcRed text-2xl p-3 text-white"></i></a>
</div>
<div class="text-center mt-8">
<a target="_blank" href="https://www.facebook.com/groups/thakurgaonpolytechnicinstituteofficial"><h1 class="text-white text-xl hover:text-primary hover:underline">Tpi Official Group</h1></a>
</div>
</div>
</div>
<p class="text-center text-white py-8 lg:pr-[100px] ">2023 ©TPI - Computer Programming Club</p>
</div>
</footer>
</body>
</html>