82 lines
2.5 KiB
Plaintext
82 lines
2.5 KiB
Plaintext
@{
|
||
ViewData["Title"] = "Jeff";
|
||
}
|
||
|
||
<!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 to my website</h1>
|
||
</div>
|
||
|
||
<section id="about">
|
||
<h2>About Me</h2>
|
||
<p>Name:彭賢恩 (Jeff)</p>
|
||
<p><span class="phone-icon">📞</span> Cellphone:0972253074</p>
|
||
<p><span class="mail-icon">📧</span> E-mail:aeelejkl174820@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>
|
||
</section>
|
||
|
||
<section id="education">
|
||
<h2>Education</h2>
|
||
<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>
|
||
|
||
<section id="skills">
|
||
<h2>Skills</h2>
|
||
<ul>
|
||
<li>C#開發經驗</li>
|
||
<li>AOI影像處理</li>
|
||
<li>YOLO物件偵測技術</li>
|
||
<li>建立前端網站</li>
|
||
</ul>
|
||
</section>
|
||
|
||
<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>
|
||
|
||
<style>
|
||
|
||
</style>
|
||
|
||
</body>
|
||
</html>
|