resume_web/Frontend_test/Views/Home/Index.cshtml

58 lines
1.6 KiB
Plaintext
Raw Normal View History

2025-02-10 16:00:51 +08:00
@{
2025-02-10 19:39:59 +08:00
ViewData["Title"] = "Jeff";
2025-02-10 16:00:51 +08:00
}
2025-02-10 19:39:59 +08:00
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<title>@ViewData["Title"]</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" asp-append-version="true">
</head>
<body>
<div class="text-center">
<h1 class="display-4">Welcome</h1>
</div>
<section id="about">
<h2>About Me</h2>
<p>姓名:彭賢恩</p>
<p>Cellphone0972253074</p>
<p>E-mailaeelejkl174820@gmail.com</p>
</section>
2025-02-10 20:50:21 +08:00
<section id="education">
<h2>Education</h2>
2025-02-10 19:39:59 +08:00
<div class="timeline">
<div class="timeline-item">
<div class="timeline-icon">📅</div>
<div class="timeline-content">
<h3>2020-2024</h3>
<h4>虎尾科技大學 自動化工程系 學士</h4>
<li>班級學業總成績第2名</li>
<li>科系學業總成績第8名</li>
</div>
</div>
<div class="timeline-item">
<div class="timeline-icon">📅</div>
<div class="timeline-content">
<h3>2024-2026</h3>
<h4>雲林科技大學 電機系 碩士</h4>
<p>專事於電機工程與相關研究。</p>
</div>
</div>
</div>
</section>
2025-02-10 20:50:21 +08:00
<section id="skills">
<h2>Skills</h2>
<ul>
<li>C#開發經驗</li>
<li>AOI影像處理</li>
<li>YOLO物件偵測技術</li>
</ul>
2025-02-10 19:39:59 +08:00
</section>
2025-02-10 20:50:21 +08:00
2025-02-10 19:39:59 +08:00
</body>
</html>