-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-me.html
More file actions
68 lines (62 loc) · 3.28 KB
/
Copy pathabout-me.html
File metadata and controls
68 lines (62 loc) · 3.28 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">
<title>Harlie Portfolio</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/about-me.css">
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap" rel="stylesheet">
</head>
<body>
<!-- Header -->
<header class="nav">
<div class="logo">Harlie Tran</div>
<div>
<a href="about-me.html">About</a>
<a href="project.html">Projects</a>
</div>
</header>
<!-- Content -->
<main class="content-container">
<div class="left-area"></div>
<div class="right-area">
<h1>About Harlie</h1>
<p>I'm a data engineer with over two years of experience in data engineering, insights generation, and
data visualization. Proficient in MS SQL, T-SQL, DAX, and M-language, I have a strong understanding of relational
databases and basic cloud computing principles. My expertise spans data warehousing, ETL processes, data pipelines, and
data modeling.</p>
<p>
Currently, I am completing the Computer Applications Development Co-op program at Conestoga College, building on my
prior postgraduate study in Reporting Systems and Database Development. I believe a skilled data engineer must
understand how applications generate and consume data. Through hands-on learning in C# and ASP.NET, I am gaining deeper
insights into application architecture and end-to-end system design—knowledge that directly enhances my ability to
design effective data pipelines and solutions. Before coming to Canada, I worked for IT outsourcing and retail
organizations, developing database solutions, ETL pipelines, and Power BI dashboards that delivered actionable insights.
</p>
<a href="cv.html">View her curriculum vitae.</a>
</div>
</main>
<!-- Footer -->
<footer>
<div class="social-links">
<a href="https://www.linkedin.com/in/harlie-tran-916ab0118/" target="_blank" aria-label="LinkedIn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
</a>
<a href="mailto:anhtran.ngh@gmail.com" aria-label="Email">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</a>
</div>
<div>© 2026 - Harlie Tran</div>
</footer>
</body>
</html>