-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
114 lines (112 loc) · 5.4 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
<html>
<head>
<meta charset="UTF-8">
<title>Team - MDPD</title>
<link rel = "stylesheet" type = "text/css" href = "css/main.css" />
<link rel = "stylesheet" type = "text/css" href = "css/browse.css" />
<style>
.expression{
font-family: monospace;
font-size: 1em;
}
.team-block{
background-color: white;
font-size: 1em;
margin: 0px;
padding: 3px 0 3px 0;
border: 1px solid black;
border-radius: 8px;
box-shadow: 0px 0px 10px grey;
}
.name-block{
font-size: 1.3em;
font-weight: bold;
color : white;
background-color: #51414f;
border: 1px solid black;
border-radius: 8px;
box-shadow: 0px 0px 10px grey;
padding: 5px 0 5px 0;
}
</style>
</head>
<body>
<div class = "section_header">
<center><p class="title">MDPD - Microbiome Database of Pulmonary Diseases</p></center>
</div>
<div class = "section_menu">
<center>
<table cellpadding="3px">
<tr class="nav">
<td class="nav"><a href="index.php" class="side_nav">Home</a></td>
<td class="nav"><a href="browse.php" class="side_nav">Browse</a></td>
<td class="nav"><a href="statistics.php" class="side_nav">Statistics</a></td>
<td class="nav"><a href="about.php" class="side_nav">About</a></td>
<td class="nav"><a href="help.html" class="side_nav">Help</a></td>
<td class="nav"><a href="#" class="active">Team</a></td>
</tr>
</table>
</center>
</div>
<div class = "section_middle">
<center>
<div style="width:40%; margin:0 5% 0 5%; float:left;">
<br/><div class="name-block">Paramita Roy <sup>^</sup></div>
<p class="team-block">
Senior Research Fellow<br/>
Department of Biological Sciences,<br/>
Bose Institute, Kolkata, India<br/>
<a class="expression" href="mailto:[email protected]">[email protected]</a><br/>
</p>
<br/><div class="name-block">Sudipto Bhattacharjee</div>
<p class="team-block">
Ph.D. Scholar<br/>
Department of Computer Science and Engineering,<br/>
University of Calcutta, Kolkata, India<br/>
<a class="expression" href="mailto:[email protected]">[email protected]</a><br/>
</p>
<br/><div class="name-block">Samanwita Mandal</div>
<p class="team-block">
Department of Zoology,<br/>
Viswa Bharati University, Santiniketan, India<br/>
<a class="expression" href="mailto:[email protected]">[email protected]</a><br/>
<br/>
</p>
</div>
<div style="width:40%; margin: 0 5% 0 5%; float:right;">
<br/><div class="name-block">Dibakar Roy <sup>^</sup></div>
<p class="team-block">
Senior Research Fellow<br/>
Department of Biological Sciences,<br/>
Bose Institute, Kolkata, India<br/>
<a class="expression" href="mailto:[email protected]">[email protected]</a><br/>
</p>
<br/><div class="name-block">Abhirupa Ghosh</div>
<p class="team-block">
Senior Research Fellow<br/>
Department of Biological Sciences,<br/>
Bose Institute, Kolkata, India<br/>
<a class="expression" href="mailto:[email protected]">[email protected]</a><br/>
</p>
<br/><div class="name-block">Dr. Sudipto Saha</div>
<p class="team-block">
Associate Professor<br/>
Department of Biological Sciences,<br/>
Bose Institute, Kolkata, India<br/>
<a class="expression" href="mailto:[email protected]">[email protected]</a>;
<a class="expression" href="mailto:[email protected]">[email protected]</a><br/>
</p>
</div>
</center>
<div style="clear:both; text-align:center;"><sup>^</sup> Equal contribution</div>
<div style="clear:both;">
<br/><hr/>
<p style="font-size:0.9em;text-align:center;">
© 2023 Bose Institute. All rights reserved. For queries, please contact Dr. Sudipto Saha
(<a style="color:#003325;" href="mailto:[email protected]">[email protected]</a>,
<a style="color:#003325;" href="mailto:[email protected]">[email protected]</a>).
</p>
</div>
</div>
</body>
</html>