Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added lannguyen/images/LanNguyen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
239 changes: 239 additions & 0 deletions lannguyen/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,239 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Lan T. Nguyen | Software Developer | Newark, DE </title>
<script src="script.js"></script>
<link rel="stylesheet" href="styles.css">

</head>

<body>

<nav>
<h2>Lan T. Nguyen</h2>


<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#research">Research</a></li>
<li><a href="#languages">Languages</a></li>
</ul>
</nav>


<header class="hero">

<h1>Software Developer </h1>

<p>
Java • Spring Boot • REST APIs • Full Stack Development
</p>

<a href="#projects" class="btn">View My Projects</a>

</header>

<section id="about">

<h2>About Me</h2>

<p>
Software developer with a background in scientific research and over 10 years of experience in data analysis and
problem solving. Currently completing an AI-Powered Software Engineering program focusing on Java, Spring Boot,
REST APIs, and full-stack development. Eager to blend life sciences research background with software development
skills as a junior member of an engineering group.

</p>


<img src="./images/LanNguyen.png" alt="My picture" >


<section id="projects">

<h2>Projects</h2>

<div class="projects-grid">

<div class="project-card">

<h3>Bible Study Online Platform</h3>

<p>
Java • Spring Boot • Angular • MySQL • OpenAI API • Stripe API
• Developed a full-stack web platform supporting church programs, student registration, and digital learning resources.
• Designed RESTful APIs using Spring Boot for course management and user services.
• Implemented secure authentication using Spring Security and JWT with role-based access control.
• Integrated OpenAI API to create an AI-powered assistant that answers questions about lesson materials.
• Built a document management system allowing administrators to upload and distribute PowerPoint and PDF study materials.
• Implemented Stripe payment processing for online course registration.
</p>

<a href="https://github.com/lnguyen135" class="project-btn">View Code</a>

</div>

<div class="project-card">

<h3>Community Clinic Management System</h3>

<p>
Backend system for managing patient records, appointments, and staff using
Spring Boot and PostgreSQL.
</p>

<a href="https://github.com/lnguyen135/java-community-clinic-system" class="project-btn">View Code</a>

</div>

<div class="project-card">

<h3>Book REST API</h3>

<p>
RESTful API built with Spring Boot supporting CRUD operations for managing books
using JPA and H2 database.
</p>

<a href="https://github.com/lnguyen135/spring-boot-book-api-lab" class="project-btn">View Code</a>

</div>

</div>
<section id="skills">

<h2>Technical Skills</h2>

<div class="skills">

<div>
<h3>Languages</h3>
<p>Java, SQL, JavaScript</p>
</div>

<div>
<h3>Backend</h3>
<p>Spring Boot, REST APIs, Hibernate</p>
</div>

<div>
<h3>Frontend</h3>
<p>HTML, CSS, JavaScript, Angular</p>
</div>

<div>
<h3>Database</h3>
<p>MySQL, PostgreSQL, H2</p>
</div>

</div>

</section>

</section>
<!-- Education Section -->
<section id="education" class="section">
<h2>Education</h2>

<div class="card">
<p><strong>AI-Powered Software Engineering Program</strong> — CodeDifferently</p>
<p>Expected June 2026</p>

<p><strong>M.S. Bioinformatics</strong> — University of Delaware</p>
<p>Expected May 2028</p>

<p><strong>B.S. Biochemistry</strong> — Temple University</p>
<p>Dean’s List; Honors in Chemistry, Mathematics, and Programming</p>
</div>
</section>

<!-- Certifications Section -->
<section id="certifications" class="section">
<h2>Certifications</h2>

<div class="card">
<ul>
<li>Java Academy Certificate</li>
<li>Oracle Java Foundations Certificate</li>
<li>Certified ScrumMaster — Scrum Alliance</li>
<li>Certificate in Software Development – Full Stack JavaScript</li>
</ul>
</div>
</section>

<!-- Research Experience -->
<section id="research" class="section">
<h2>Early Career Research Experience</h2>

<div class="card">
<h3>Research Specialist — University of Wisconsin School of Medicine</h3>
<ul>
<li>Conducted genetic research involving DNA sequencing and microarray expression analysis.</li>
<li>Analyzed complex biological datasets to identify gene expression patterns.</li>
</ul>

<h3>Research Associate — Human Genome Sciences, Inc.</h3>
<ul>
<li>Performed molecular assays including PCR and genetic analysis in an FDA-regulated laboratory environment.</li>
<li>Applied data analysis and systematic problem-solving to support biotechnology research.</li>
</ul>
</div>
</section>

<!-- Languages -->
<section id="languages" class="section">
<h2>Languages</h2>

<div class="card">
<p>Vietnamese — Fluent (spoken and written)</p>
<p>English — Fluent</p>
<p> French — Passive knowledge</p>
</div>
</section>

<section id="contact" class="section">
<h2>Contact</h2>

<div class="card">
<p>
I'm currently seeking opportunities as a Software Developer.
Feel free to contact me for collaboration or job opportunities.
</p>

<p>Email: lantnguyen2026@gmail.com</p>
<p>Location: Newark, DE</p>

<a href="mailto:lantnguyen2026@gmail.com" class="btn">
Send Email
</a>

<p>
GitHub:
<a href="https://github.com/lnguyen135">github.com/lnguyen135</a>
</p>

<p>
LinkedIn:
<a href="https://www.linkedin.com/in/lan-nguyen-24616169">LinkedIn</a>
</p>
</div>
</section>

</section>
<footer>

<p>© 2026 Lan Nguyen</p>
<p> Newark, DE </p>

</footer>

</body>

</html>
Loading