-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
162 lines (162 loc) · 9.38 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Robotics and Motion Laboratory at University of Illinois at Chicago</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link href="bootstrap-4.4.1.css" rel="stylesheet">
</head>
<!-- navbar start -->
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand"><img src="RAMlab-logo.png" width="89" height="50" alt="RAM Lab Logo"/></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="about.html" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
People
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="about.html">Faculty</a>
<a class="dropdown-item" href="lab-members.html">Current members</a>
<a class="dropdown-item" href="alumni-graduates.html">Graduate alumni</a>
<a class="dropdown-item" href="alumni-undergrads.html">Undergraduate/High school alumni</a>
<a class="dropdown-item" href="awards.html">Student Awards</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="research.html" id="navbarDropdownPub" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Publications
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="research.html#2024">2025</a>
<a class="dropdown-item" href="research.html#2024">2024</a>
<a class="dropdown-item" href="research.html#2023">2023</a>
<a class="dropdown-item" href="research.html#2022">2022</a>
<a class="dropdown-item" href="research.html#2021">2021</a>
<a class="dropdown-item" href="research.html#2020">2020</a>
<a class="dropdown-item" href="research.html#2019">2019</a>
<a class="dropdown-item" href="research.html#2018">2018</a>
<a class="dropdown-item" href="research.html#2017">2017</a>
<a class="dropdown-item" href="research.html#2016">2016</a>
<a class="dropdown-item" href="research.html#2015">2015</a>
<a class="dropdown-item" href="research.html#2014">2014</a>
<a class="dropdown-item" href="research.html#20082013">2008-2013</a>
<a class="dropdown-item" href="research.html#theses">Theses</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="funding.html">Funding</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="teaching.html" id="navbarDropdownTeach" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Teaching
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="teaching.html#courses">Courses</a>
<a class="dropdown-item" href="teaching.html#tutorials">Tutorials</a>
<a class="dropdown-item" href="teaching.html#outreach">Outreach</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="multimedia.html" id="navbarDropdownMedia" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Multimedia
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="videos.html">Videos</a>
<a class="dropdown-item" href="multimedia.html#robots">Robots</a>
<a class="dropdown-item" href="multimedia.html#articles">Articles</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<form class="form-inline my-2 my-lg-0">
</form>
</ul>
</div>
</nav>
<!-- page start -->
<section>
<!-- See help here: https://getbootstrap.com/docs/4.0/components/navbar/-->
<!-- light orange #FFD580; #FAD5A5-->
<!-- light blue #a5cafa-->
<!-- light yellow #FAFAA5-->
<!-- light purple #DDC3EE-->
<div class="jumbotron text-center mt-2 " style="background-color: #8bf8f8;">
<div class="container">
<div class="row">
<div class="col-12">
<br><a href="info.html"><img src="RAMlab-logo.png" width="250" height="150" alt="RAM Lab Logo"/></a>
<h1>Welcome to the Robotics and Motion Laboratory at the University of Illinois at Chicago</h1>
<p>We are interested in developing robotic prototypes and estimation and control algorithms that would push the state-of-the-art of current systems. We use prototyping tools such as 3D printers and simulations and tools in system identification, optimization, model-based control, and learning. Please see videos for a sampling of the systems we work on.</p>
<p><a class="btn btn-dark btn-lg" href="videos.html" role="button">See videos »</a></p>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-12 col-xl-12"><h3>Joining the Lab</h3>
<p>There are no openings for PhD students at this time. Current UIC MS students considering thesis option are welcome to join. UIC undergraduate students (any engineering or CS majors) are welcome to join. Contact pranav AT uic DOT edu ([email protected]).</p>
</div>
<div class="col-12 col-xl-12"><br>
<h4>Sponsors</h4><a href="http://robotis.us"><img style="width: 130px; height: 30px;" alt="robotis" src="sponsors/robotis.png"></a>
<a href="http://www.nsf.gov/"><img src="sponsors/nsf1.jpg" alt="nsf" style="width: 85px; height: 85px;"></a>
<a href="https://www.arl.army.mil/"><img src="sponsors/ARL.png" alt="arl" style="border: 0px solid ; width: 100px; height: 40px;"></a>
<a href="http://www.sawtellefinancial.com/"><img style="border: 0px solid ; width: 150px; height: 59px;" alt="sawtelle_financial" src="sponsors/sawtelle_financial.png"></a>
<img style="width: 120px; height: 70px;" alt="SwRI" src="sponsors/SwRI_logo.jpeg"> <br>
<img style="width: 130px; height: 100px;" alt="IEEE_Control_Systems" src="sponsors/css.png">
<img style="width: 160px; height: 160px;" alt="continental" src="sponsors/Continental.jpg">
<img style="width: 100px; height: 100px;" alt="twc" src="sponsors/twc.png">
<img style="width: 120px; height: 120px;" alt="depEd" src="sponsors/depEd.png">
</div>
</div>
</div>
</section>
<hr>
<footer class="text-left">
<div class="container">
<div class="row">
<div>Last updated Nov 28, 2024 by Pranav Bhounsule<br>Website designed by <a href="mailto:[email protected]">Emily Phan</a></div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-3.4.1.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/popper.min.js"></script>
<script src="js/bootstrap-4.4.1.js"></script>
<!-- Default Statcounter code for Pranav Bhounsule HomePage
https://pab47.github.io/ -->
<script type="text/javascript">
var sc_project=6467122;
var sc_invisible=0;
var sc_security="926f6293";
var scJsHost = "https://";
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="Web Analytics
Made Easy - Statcounter" href="https://statcounter.com/"
target="_blank"><img class="statcounter"
src="https://c.statcounter.com/6467122/0/926f6293/0/"
alt="Web Analytics Made Easy - Statcounter"
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
<!-- End of Statcounter Code -->
</body>
</html>