-
Notifications
You must be signed in to change notification settings - Fork 1
/
aboutUs.html
79 lines (67 loc) · 3.28 KB
/
aboutUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<!-- Include Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="logo/fav.jpeg">
</head>
<body class="bg-gray-100">
<nav class="bg-gray-800">
<ul class="flex justify-center">
<li class="mr-6">
<a href="/" class="text-white hover:text-gray-300 px-4 py-2 block">Home</a>
</li>
<li class="mr-6">
<a href="/getcourse" class="text-white hover:text-gray-300 px-4 py-2 block">Courses</a>
</li>
<li class="mr-6">
<a href="/problemset" class="text-white hover:text-gray-300 px-4 py-2 block">Practice</a>
</li>
<li class="mr-6">
<a href="/quiz" class="text-white hover:text-gray-300 px-4 py-2 block">Quiz</a>
</li>
<li>
<a href="/aboutus" class="text-white hover:text-gray-300 px-4 py-2 block">About Us</a>
</li>
</ul>
</nav>
<div class="container mx-auto py-8 px-4 ">
<h1 class="text-3xl font-bold text-center mb-8">About Us</h1>
<!-- Team Members Section -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Team Member 1 -->
<div class="bg-white rounded-lg shadow-md p-6 text-center mx-auto">
<img src="logo/manas.png" alt="Member 1" class="w-64 h-72 rounded-full mb-4">
<h2 class="text-xl font-semibold mb-4">Vipul Lakum</h2>
<p class="text-gray-700 mb-4">Front-end Developer</p>
<p class="text-gray-700 mb-4">Back-end Developer</p>
</div>
<!-- Team Member 2 -->
<div class="bg-white rounded-lg shadow-md p-6 text-center mx-auto">
<img src="logo/manas.png" alt="Member 2" class="w-64 h-72 rounded-full mb-4">
<h2 class="text-xl font-semibold mb-4">Yash Gabani</h2>
<p class="text-gray-700 mb-4">Front-end Developer</p>
<p class="text-gray-700 mb-4">Back-end Developer</p>
</div>
<!-- Team Member 3 -->
<div class="bg-white rounded-lg shadow-md p-6 text-center mx-auto">
<img src="logo/manas.png" alt="Member 3" class="w-64 h-72 rounded-full mb-4">
<h2 class="text-xl font-semibold mb-4">Meet Thakkar</h2>
<p class="text-gray-700 mb-4">Front-end Developer</p>
<p class="text-gray-700 mb-4">Back-end Developer</p>
</div>
<!-- Team Member 4 -->
<div class="bg-white rounded-lg shadow-md p-6 text-center mx-auto">
<img src="logo/manas.png" alt="Member 4" class="w-64 h-72 rounded-full mb-4">
<h2 class="text-xl font-semibold mb-4">Meet Antala</h2>
<p class="text-gray-700 mb-4">Front-end Developer</p>
<p class="text-gray-700 mb-4">Back-end Developer</p>
</div>
</div>
</div>
</div>
</body>
</html>