-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (96 loc) · 5.07 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arnob Mukherjee - Home</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<!-- Sidebar -->
<nav id="sidebar" class="col-md-3 col-lg-2 d-md-block bg-light sidebar collapse">
<div class="position-sticky pt-3">
<header class="text-center py-4">
<div class="container">
<img src="your-photo.jpg" alt="Arnob Mukherjee" class="profile-photo img-fluid mb-3">
<h4>Arnob Mukherjee, PhD</h4>
<p>Postdoctoral Researcher @ Uppsala University, Sweden | Quantitative Analyst</p>
</div>
</header>
<ul class="nav flex-column" style="list-style: none; padding: 0; margin: 0;">
<li class="nav-item" style="list-style: none;">
<a class="nav-link active" aria-current="page" href="index.html">
<i class="fas fa-home"></i>
Home
</a>
</li>
<li class="nav-item" style="list-style: none;">
<a class="nav-link" href="publications.html">
<i class="fas fa-book"></i>
Publications
</a>
</li>
<li class="nav-item" style="list-style: none;">
<a class="nav-link" href="talks.html">
<i class="fas fa-file-powerpoint"></i>
Presentations
</a>
</li>
<li class="nav-item" style="list-style: none;">
<a class="nav-link" href="teaching.html">
<i class="fas fa-chalkboard-teacher"></i>
Teaching
</a>
</li>
<li class="nav-item" style="list-style: none;">
<a class="nav-link" href="organization.html">
<i class="fas fa-sitemap"></i>
Organization
</a>
</li>
<li class="nav-item" style="list-style: none;">
<a class="nav-link" href="outreach.html">
<i class="fas fa-handshake"></i>
Outreach
</a>
</li>
<li class="nav-item" style="list-style: none;">
<a class="nav-link" href="cv.html">
<i class="fas fa-file-alt"></i>
CV
</a>
</li>
<li class="nav-item" style="list-style: none;">
<a class="nav-link" href="year-archive.html">
<i class="fas fa-archive"></i>
Year Archive
</a>
</li>
</ul>
</div>
</nav>
<!-- Main content -->
<main class="col-md-9 ms-sm-auto col-lg-10 px-md-4">
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">Home</h1>
</div>
<section id="about" class="my-5 text-center">
<h2>About Me</h2>
<p>Uppsala, Sweden | +46 722 257142 | <a href="mailto:arnobmukherjee1988@gmail.com">arnobmukherjee1988@gmail.com</a></p>
<p>
I am a Postdoctoral Researcher at Uppsala University, Sweden, with 9 years of experience in condensed matter physics.
My expertise in combining physics-based modeling with mathematical and statistical algorithms has enabled me to tackle
complex real-world problems effectively. I am constantly motivated by challenging problems and strive to stay at the forefront
of innovation by incorporating cutting-edge research developments in quantitative data analysis and machine learning.
</p>
</section>
</main>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>