-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiences.html
More file actions
62 lines (61 loc) · 2.24 KB
/
experiences.html
File metadata and controls
62 lines (61 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<title>Aiden's Personal Portfolio</title>
<meta charset="UTF-8">
<meta name="description" content="Aiden Nguyen's personal portfolio showcasing experiences, projects, and skills.">
<meta name="author" content="Aiden Nguyen">
<meta name="keywords" content="Aiden Nguyen, portfolio, AI, NLP, projects, experiences, Web Development, Python, C, HTML, CSS">
<link rel="stylesheet" href="stylesheet/styles.css">
</head>
<body>
<!-- Your content will go here -->
<header>
<nav>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="experiences.html">Experiences</a></li>
<li><a href="contacts.html">Contact</a></li>
<li><a href="map.html">Where</a></li>
</ul>
</nav>
</header>
<main>
<div class="frame">
<div class="title-box">
<h1>My Experiences</h1>
<h2> Here's a summary of my work experiences!</h2>
</div>
<table>
<tr>
<th>Employer</th>
<th>Role</th>
<th>Summaries</th>
</tr>
<tr>
<th>Proforma</th>
<th>Software Engineer Intern</th>
<th class="description">NLP, NTLK, Spacy, Python, Vector Databases, LLMs, Git</th>
</tr>
<tr>
<th>CMU HCI</th>
<th>Research Assistant</th>
<th class="description">Qualitative and Quantitative interviews, JSON parsing and scripting</th>
</tr>
<tr>
<th>Publix</th>
<th>Cashier</th>
<th class="description">Cleaned, Mopped, Sweeped, Review protocols</th>
</tr>
</table>
</div>
</main>
<footer>
<p>Connect With Me:</p>
<a href="mailto:aiden.nguyen101@gmail.com">aiden.nguyen101@gmail.com</a>
<a href="https://github.com/zenxol">GitHub</a>
<a href="https://www.linkedin.com/in/aidennguyencmu/">Linkedin</a>
</footer>
</body>
</html>