-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
68 lines (55 loc) · 2.69 KB
/
about.html
File metadata and controls
68 lines (55 loc) · 2.69 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
<!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>About Me - Rene Ebunle A.</title>
<style>
ul {
list-style-type: disc; /* This sets the bullet style */
padding-left: 30px;
}
li {
margin: 10px 20px;
}
</style>
</head>
<body>
<header>
<h1>About Me</h1>
</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>
<h3>Biography</h3>
<p>Rene Ebunle A. is a PhD student in Electrical & Computer Engineering at the University of New Hampshire. His research focuses on innovative solutions in the fields of optimal control theory, optimization, reinforcement learning, system identification and estimation, power electronics for renewable energy systems.</p>
<h3>Education</h3>
<ul>
<li>Electrical and Computer Engineering, University of New Hampshire (Ph.D. Candidate)</li>
<li>Master of Engineering in Electrical Power Engineering, University of Buea, Cameroon </li>
<li>Bachelor of Engineering in Electrical and Electronic Engineering, University of Buea, Cameroon</li>
</ul>
<h3>Contact</h3>
<p>Email: <a href="mailto:ebunle.rene@unh.edu">ebunle.rene@unh.edu</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/akupan-rene-b08361109" target="_blank" rel="noopener noreferrer">visit profile</a><br>
ResearchGate: <a href="https://www.researchgate.net/profile/Ebunle-Rene?user=dyTG1WQAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">visit profile</a><br>
Google Scholar: <a href="https://scholar.google.com/citations?user=dyTG1WQAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">visit profile</a><br>
ORCID: <a href="https://orcid.org/0000-0001-7623-2500" target="_blank" rel="noopener noreferrer">visit profile</a><br>
Github: <a href="https://github.com/ebunle" target="_blank" rel="noopener noreferrer">visit profile</a>
</p>
</section>
</main>
<footer>
<p>© 2026 Rene Ebunle A.</p>
</footer>
<script src="script.js"></script>
</body>
</html>