resume_web/Frontend_test/Views/Home/Index.cshtml

82 lines
2.5 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">
2025-02-11 14:11:01 +08:00
<h1 class="display-4">Welcome to my website</h1>
2025-02-10 19:39:59 +08:00
</div>
<section id="about">
<h2>About Me</h2>
2025-02-10 21:31:01 +08:00
<p>Name彭賢恩 (Jeff)</p>
2025-02-11 14:11:01 +08:00
<p><span class="phone-icon">📞</span> Cellphone0972253074</p>
<p><span class="mail-icon">📧</span> E-mailaeelejkl174820@gmail.com</p>
<p><span class="tea-icon">🍵</span>Gitea<a href="http://140.125.21.72:8418/Jeff" target="_blank">http://140.125.21.72:8418/Jeff</a></p>
2025-02-10 19:39:59 +08:00
</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>
2025-02-11 14:14:02 +08:00
<li>科系學業總成績第8名</li>
2025-02-10 19:39:59 +08:00
</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>
2025-02-11 14:11:01 +08:00
<li>建立前端網站</li>
2025-02-10 20:50:21 +08:00
</ul>
2025-02-10 19:39:59 +08:00
</section>
2025-02-10 20:50:21 +08:00
2025-02-10 21:31:01 +08:00
<section id="program-language">
<h2>Program Language</h2>
<div class="progress-container">
<div class="progress-item">
<span>C/C#</span>
<div class="progress-bar" style="width: 40%;">40%</div>
</div>
<div class="progress-item">
<span>Python</span>
<div class="progress-bar" style="width: 60%;">60%</div>
</div>
<div class="progress-item">
<span>JavaScript</span>
<div class="progress-bar" style="width: 20%;">20%</div>
</div>
</div>
</section>
2025-02-10 22:27:17 +08:00
<style>
</style>
2025-02-10 21:31:01 +08:00
2025-02-10 19:39:59 +08:00
</body>
</html>