-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
55 lines (51 loc) · 2.75 KB
/
education.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Education</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- Add any additional CSS files here -->
</head>
<body id="page-top">
<!-- Navbar Placeholder -->
<div id="nav-placeholder"></div>
<script src="js/nav.js"></script>
<!-- education.html -->
<section class="resume-section bg-light" id="education">
<div class="container">
<h2 class="mb-4 text-center">Education</h2>
<img src="png/ncstate1.png" alt="NC State University" class="img-fluid rounded shadow-sm edu-logo mb-3">
<div class="col-md-6">
<div class="card border-0 shadow-sm">
<div class="card-body">
<h4 class="card-title mb-1">Bachelor of Science</h4>
<h5 class="card-subtitle mb-2 text-muted">Chemical and Biomolecular Engineering</h5>
<p class="card-text text-muted">NC State University, 2018 - 2022</p>
</div>
</div>
</div>
<h3 class="mb-4 text-center">Undergraduate Research</h3>
<div class="row justify-content-center">
<div class="col-lg-8">
<p class="text-center">
I researched the interaction between microglia and macrophage cells within the lateral ventricle of hydrocephalic mice brains using techniques like PCR genotyping, gel electrophoresis, and immunohistochemistry. Additionally, I explored the role of the SOX9 genetic marker in neurogenesis and gliogenesis, and managed mouse colonies.
</p>
<h4 class="mt-4 text-center">Key Research Projects</h4>
<ul class="list-unstyled text-center">
<li><strong>Sholl Analysis</strong>: Analyzed microglia and macrophage cell processes in transgenic mice brains.</li>
<li><strong>Cell Counting and Data Analysis</strong>: Used ImageJ for cell counting and performed statistical analysis.</li>
<li><strong>Single Cell Sequencing Cluster Analysis</strong>: Categorized neuron types based on gene expression using R programming.</li>
</ul>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/activePage.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>