-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteaching.html
169 lines (151 loc) · 5.85 KB
/
teaching.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
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Teaching Experience - Qi Li, Assistant Professor at the University of Oklahoma">
<title>Teaching Experience - Qi Li</title>
<style>
/* Reset all elements */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* General body styling */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}
/* Navigation bar styles */
nav {
background-color: #841617; /* University of Oklahoma Crimson Red */
color: #fff;
padding: 1rem 0; /* Add vertical padding */
}
.nav-container {
max-width: 1200px; /* Limit the content width */
margin: 0 auto; /* Center the content */
display: flex;
justify-content: space-around;
}
.nav-container a {
color: #fff;
text-decoration: none;
padding: 0.5rem;
font-weight: bold; /* Make the text bold */
}
.nav-container a:hover {
background-color: #b22d2d; /* Slightly lighter shade for hover effect */
}
/* Main container styling */
.main-container {
max-width: 1200px; /* Limit the width of the content */
margin: 0 auto; /* Center the content horizontally */
display: flex;
justify-content: space-between;
padding: 2rem 0; /* Add vertical padding */
gap: 2rem; /* Add space between left and right columns */
}
/* Left column styling */
.left-column {
flex: 0 0 450px;
text-align: center;
}
.left-column img {
width: 180px;
height: auto;
margin-bottom: 1rem;
}
/* Right column styling */
.right-column {
flex: 1;
}
/* Footer styling */
footer {
text-align: center;
background-color: white; /* Change footer background to white */
color: #333; /* Set footer text color to dark gray for visibility */
padding: 1rem;
border-top: 1px solid #ccc; /* Add a subtle top border for separation */
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
.main-container {
flex-direction: column;
align-items: center;
}
.left-column {
margin-bottom: 2rem;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="nav-container">
<a href="index.html">Home</a>
<a href="news.html">News</a>
<a href="publications.html">Publications</a>
<a href="teaching.html">Teaching</a>
<a href="awards.html">Awards</a>
<a href="services.html">Services</a>
</div>
</nav>
<!-- Main Section -->
<div class="main-container">
<!-- Left Column (Photo and Title) -->
<div class="left-column">
<img src="your-photo.jpg" alt="Qi Li's photo">
<div class="photo-text">
<p class="chinese-name">琪 李</p>
<h1>Qi Li</h1>
<p>Assistant Professor</p>
<p><a href="https://www.ou.edu/coe/ece" target="_blank">School of Electrical and Computer Engineering</a></p>
<p>University of Oklahoma</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<div class="social-links">
<a href="https://scholar.google.com/citations?user=rMMhAesAAAAJ&hl=en" target="_blank">Google Scholar</a> |
<a href="https://github.com/liqi216" target="_blank">GitHub</a> |
<a href="https://www.linkedin.com/in/qili0216/" target="_blank">LinkedIn</a>
</div>
</div>
</div>
<!-- Right Column (Teaching and Mentoring Experience) -->
<div class="right-column">
<section id="teaching-experience">
<h2>Teaching Experience</h2>
<br> <!-- Add an empty row here -->
<ul>
<li>Fall'2023: Guest Speaker, IoT Security and Privacy.</li>
<li>Spring’23: CSCI 575@Mines, Advanced Machine Learning.</li>
<li>Fall’22: CSCI 442@Mines, Operating System, graduate/undergraduate level.</li>
<li>Fall’21: COP 4610@FIU, Operating System, undergraduate level.</li>
<li>Spring’20: COP 2210@FIU, Programming 1.</li>
<li>Fall’19: COP 4610@FIU, Operating System, undergraduate level.</li>
</ul>
</section>
<br> <!-- Add an empty row here -->
<section id="mentoring-experience">
<h2>Mentoring Experience</h2>
<br> <!-- Add an empty row here -->
<ul>
<li>Krithi Gopalabhatla (High School Summer Internship 2023)</li>
<li>Carson E Snow (Mines, MURF scholar 2022-2023)</li>
<li>Qian Tan (Mines, Google Mentor, 2023)</li>
<li>Hunter Stewart (Mines, Google Mentor, 2023)</li>
<li>Sander Schott (Mines, CS-SIP, Summer, 2022, joint paper (SolarDetector published))</li>
<li>Yuyang Leng (FIU, 2020, joint paper (SolarFinder published))</li>
</ul>
</section>
</div>
</div>
<!-- Footer -->
<footer>
<p>© 2025 Qi Li - University of Oklahoma</p>
</footer>
</body>
</html>