-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (72 loc) · 3.16 KB
/
index.html
File metadata and controls
101 lines (72 loc) · 3.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Rene Ebunle A. - Research</title>
</head>
<body>
<header>
<img src="images/p1.jpeg" alt="Rene Ebunle A." class="header-profile-pic">
<div class="header-text">
<h1>Rene Ebunle A.</h1>
<h2>Department of Electrical & Computer Engineering, UNH, USA </h2>
</div>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
<main>
<section class="welcome-section">
<h3>Welcome to My Website!</h3>
<p>
I am an ECE PhD student at the University of New Hampshire working with
<b>Prof. Yoon</b> at the
<a href="https://sites.usnh.edu/sy1000/" target="_blank" class="lab-link">Mechatronics and Controls Laboratory</a>.
</p>
<h4>Research</h4>
<div class="interest-cards">
<div class="card"> Robust Optimal Control Theory</div>
<div class="card">Model Identification & Estimation</div>
<div class="card">Reinforcement Learning</div>
<div class="card">Optimization</div>
<div class="card">Power Electronics & Energy Systems</div>
</div>
<p>
My research aims to innovate solutions in these fields through advanced approaches.
</p>
<!-- Video section
<div class="video-container">
<h5>Control Theory Demonstration</h5>
<video width="50%" autoplay loop muted playsinline> <video width="50%" controls>
<source src="contall videos/control-theory-tracking_error_analysis.mp4" type="video/mp4">
<source src="contall videos/control-theory-tracking_error_analysis.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<p class="video-caption">Optimal control principle.</p>
</div>
-->
<!-- Video section -->
<div class="video-container">
<!-- <h5>Control Theory Demonstration</h5> -->
<video class="research-video" autoplay loop muted playsinline>
<source src="contall videos/control-theory-tracking_error_analysis.mp4" type="video/mp4">
<source src="contall videos/control-theory-tracking_error_analysis.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<p class="video-caption">Figure 1: Optimal control principles.</p>
</div>
</section>
</main>
<footer>
<p>© 2026 Rene Ebunle A.</p>
</footer>
<script src="script.js"></script>
</body>
</html>