-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebmasters.html
127 lines (118 loc) · 3.57 KB
/
webmasters.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="./headimage/icon.png">
<title>ONE Lab</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./styles.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SW68LZVXCV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SW68LZVXCV');
</script>
<style>
.webmaster-table-container {
display: flex;
justify-content: center;
margin: 20px auto;
width: 80%;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.webmaster-table {
width: 100%;
border-collapse: collapse;
text-align: center;
}
.webmaster-table th, .webmaster-table td {
padding: 15px;
border-bottom: 1px solid #ddd;
}
.webmaster-table th {
background-color: #757575;
color: white;
font-weight: bold;
}
.webmaster-table tr:last-child td {
border-bottom: none;
}
</style>
</head>
<body>
<nav>
<div width="900" border="0" align="center" cellspacing="0" cellpadding="20">
<div class="home-logo-container inline-home-logo-div">
<a href="/"><img draggable="false" src="./headimage/onelab_c.svg" width="250"></a>
</div>
<div class="nav-logo-container inline-nav-div">
<a href="/people/"><img draggable="false" src="./headimage/people.svg" height="14"></a>
</div>
<div class="nav-logo-container inline-nav-div">
<a href="/projects/"><img draggable="false" src="./headimage/projects.svg" height="14"></a>
</div>
<div class="nav-logo-container inline-nav-div">
<a href="/publications/"><img draggable="false" src="./headimage/publications.svg" height="14"></a>
</div>
<div class="nav-logo-container inline-nav-div">
<a href="/faq/"><img draggable="false" src="./headimage/faq.svg" height="14"></a>
</div>
</div>
</nav>
<br>
<!--#################################################################################################-->
<div class="container">
<table width="700" border="0" align="center" cellspacing="0" cellpadding="0">
<tr><td width="100%" valign="middle">
<hr>
</td></tr>
</table>
<h1>Webmasters</h1><br><br>
<center>
<div class="webmaster-table-container">
<table class="webmaster-table">
<thead>
<tr>
<th>Name</th>
<th>Duration</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong><a target="_blank" href="https://wenbinwan.com/">Wenbin Wan</a></strong></td>
<td>Sep. 2023 ➔ Aug. 2024</td>
</tr>
<tr>
<td><strong><a target="_blank" href="https://kmranrg.com/">Kumar Anurag</a></strong></td>
<td>Aug. 2024 ➔ Present</td>
</tr>
</tbody>
</table>
</div>
</center>
<br><br>
<!--#################################################################################################-->
<br><br><br><br>
<hr>
<footer>
<div class="footer-container">
<div class="footer-logo">
<a href="/"><img src="./headimage/onelab_t.svg" alt="Footer Logo"></a>
</div>
<div class="footer-social">
<a href="https://www.linkedin.com/company/opt-est-lab/posts" class="fa fa-linkedin"></a>
<a href="https://github.com/Opt-n-Est-Lab" class="fa fa-github"></a>
<!-- <a href="https://twitter.com/__WWan" class="fa fa-twitter"></a>
<a href="https://www.linkedin.com/in/wenbinwan/" class="fa fa-linkedin"></a> -->
<a href="https://www.youtube.com/@ONE_lab" class="fa fa-youtube"></a>
</div>
</div>
</footer>
</div>
</body>
</html>