resume_web/Frontend_test/Views/Home/Index.cshtml
2025-02-10 22:27:17 +08:00

80 lines
2.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@{
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</h1>
</div>
<section id="about">
<h2>About Me</h2>
<p>Name彭賢恩 (Jeff)</p>
<p>Cellphone0972253074</p>
<p>E-mailaeelejkl174820@gmail.com</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>
</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>