-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (130 loc) · 6.67 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE HTML>
<html>
<head>
<title>Rahul Bhadani</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/main-auxiliary.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="is-preload dark-theme">
<button id="theme-toggle" aria-label="Toggle Theme">
<i class="fas fa-sun" style="display:none;"></i>
<i class="fas fa-moon" style="display:inline;"></i>
<br/>
</button>
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<div class="inner">
<section id="banner">
<div class="content">
<header>
<div id ="image_bio">
<img src="images/rahulbhadani.jpg" class="bioimage" alt="" >
<h1 style="text-align: center">Rahul Bhadani</h1>
<i class="fa fa-envelope-o"> </i><a href="#"> [email protected], [email protected]</a><br/>
<span class="professor-title">Assistant Professor, Electrical and Computer Engineering, The University of Alabama in Huntsville</span><br/>
<span class="research-interests">Connected and Autonomous Vehicles | Mobility | Quantum Information Theory</span>
<br/>
<!--img src="images/2x/Artboard [email protected]" class="logoimg"/>
<br/-->
<a href="about.html"><span class="icon-person"></span></a>
<a href="research.html"><span class="icon-research"></span></a>
<a href="publications.html"><span class="icon-publication"></span></a>
<a href="teaching.html"><span class="icon-teaching"></span></a>
<a href="media.html"><span class="icon-news"></span></a>
<a href="blogs/"><span class="icon-blogs"></span></a>
<br/>
<a href="https://www.linkedin.com/in/rahulbhadani/" class="icon fa-linkedin"><span class="label">LinkedIn</span></a>
<a href="http://github.com/rahulbhadani" class="icon fa-github"><span class="label">Github</span></a>
<a href="http://csl.arizona.edu/~rahulbhadani" class="icon fa-globe"><span class="label">UofA Page</span></a>
<a href = "https://www.youtube.com/user/kumarrahulbhadani" class = "icon fa-youtube"><span class="label">YouTube</span></a>
<a href = "https://rahulbhadani.medium.com/" class = "icon fa-medium"><span class="label">Medium</span></a>
</div>
</header>
</div>
</section>
<div class="content">
<p style="text-align: justify">I obtained my PhD in May 2022 from the University of Arizona in Electrical and Computer Engineering.
My research interests are at the intersection of cyber-physical systems, intelligent transportation, smart cities, and novel machine learning algorithms including quantum machine learning and quantum communication. My research is dedicated to enhancing the safety, resilience, security, and reliability of the nation's infrastructure and community. To accomplish my goals, I am exploring the synergy of computation, control, and communication.
</p>
Lab Website:
<a href="https://aarc-lab.github.io/"><span class="hiring-link">https://aarc-lab.github.io/</span></a>
</p>
</div>
<section>
<button id="hiring-button" class="hiring-btn">We're hiring</button>
<div>
<p>
I am looking for self-motivated PhD candidates and interns who share similar research interests with me! Please <a href="hiring.html" class="hiring-link">click here</a> for more information.
</p>
</div>
</section>
</div>
</div>
<!-- Sidebar -->
<div id="sidebar">
<div class="inner">
<!-- Menu -->
<nav id="menu">
<header class="major">
<h2>Menu</h2>
<h6>
<a href="https://www.linkedin.com/in/rahulbhadani/" class="icon fa-linkedin"><span class="label">LinkedIn</span></a>
<a href="http://github.com/rahulbhadani" class="icon fa-github"><span class="label">Github</span></a>
<a href = "https://www.youtube.com/user/kumarrahulbhadani" class = "icon fa-youtube"><span class="label">YouTube</span></a>
<a href = "https://rahulbhadani.medium.com/" class = "icon fa-medium"><span class="label">Medium</span></a>
</h6>
</header>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="about.html">About</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="media.html">News/Media Coverage</a></li>
</ul>
</nav>
<!-- Section -->
<section>
<header class="major">
<h2>Contacts</h2>
</header>
<ul class="contact">
<li class="fa-envelope-o"><a href="mailto:[email protected]">[email protected]</a></li>
<li class="fa-home">Department of Electrical and Computer Engineering, The University of Alabama in Huntsville<br />
Huntsville, AL 35899</li>
</ul>
</section>
</div>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
document.getElementById('theme-toggle').addEventListener('click', function() {
document.body.classList.toggle('dark-theme');
document.body.classList.toggle('light-theme');
if (document.body.classList.contains('light-theme')) {
document.querySelector('.fa-sun').style.display = 'inline';
document.querySelector('.fa-moon').style.display = 'none';
} else {
document.querySelector('.fa-sun').style.display = 'none';
document.querySelector('.fa-moon').style.display = 'inline';
}
});
</script>
<script>
document.getElementById("hiring-button").onclick = function () {
location.href = "hiring.html";
};
</script>
</body>
</html>