-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
110 lines (107 loc) · 4.37 KB
/
people.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>People - Md. Mustak Khan</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<style>
.people-info {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.person {
background: linear-gradient(135deg, #e0e7ff, #f9fafb);
border-radius: 10px;
padding: 20px;
margin: 10px;
width: calc(30% - 20px); /* Responsive card width */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
display: flex;
align-items: center; /* Aligns items vertically */
}
.person-image {
max-width: 100px; /* Set a maximum width for the image */
border-radius: 8px;
margin-right: 15px; /* Space between image and text */
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-left">
<a href="home.html" class="nav-logo">MK</a>
<div class="search-container">
<input type="text" placeholder="Search..." class="search-input">
<button class="search-btn">
<i class="fas fa-search"></i>
</button>
</div>
</div>
<div class="nav-links">
<a href="home.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="research.html" class="nav-link">Research</a>
<a href="publications.html" class="nav-link">Publications</a>
<a href="people.html" class="nav-link active">People</a>
<a href="lab-protocols.html" class="nav-link">Lab Protocols</a>
<div class="dropdown">
<button class="nav-link dropdown-btn">More
<i class="fas fa-chevron-down"></i>
</button>
<div class="dropdown-content">
<a href="resources.html" class="dropdown-link">Resources & Tools</a>
<a href="gallery.html" class="dropdown-link">Gallery</a>
<a href="contact.html" class="dropdown-link">Contact</a>
</div>
</div>
</div>
<button class="mobile-menu">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
<!-- People Section -->
<section class="people-section">
<div class="container">
<h1 class="section-title">People</h1>
<div class="people-info">
<div class="person">
<img src="DS sir.png" alt="Dr. Dwaipayan Sikdar" class="person-image">
<div>
<h3>Dr. Dwaipayan Sikdar</h3>
<p>Professor, Biochemistry and Molecular Biology, University of Chittagong, Chittagong-4331</p>
</div>
</div>
<div class="person">
<img src="SM sir.png" alt="Dr. Suman Mojumder" class="person-image">
<div>
<h3>Dr. Suman Mojumder</h3>
<p>Associate Professor, Biochemistry and Molecular Biology, University of Chittagong, Chittagong-4331</p>
</div>
</div>
<div class="person">
<img src="Jhossain.png" alt="Jubayer Hossain" class="person-image">
<div>
<h3>Jubayer Hossain</h3>
<p>Founder & Executive Director, CHIRAL Bangladesh</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2025 Md. Mustak Khan. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>