resume_web/Frontend_test/Views/Home/Index.cshtml
2025-02-12 21:41:33 +08:00

101 lines
3.8 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 to my website</h1>
</div>
<section id="about">
<h2>About Me</h2>
<p class="custom-text">Name彭賢恩 (Jeff)</p>
<p class ="custom-text"><span class="phone-icon">📞</span> Cellphone0972253074</p>
<p class="custom-text"><span class="mail-icon">📧</span> E-mailaeelejkl174820@gmail.com</p>
<p class="custom-text"><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 class="custom-text">班級學業總成績第2名</li>
<li class="custom-text">科系學業總成績第8名</li>
</div>
</div>
<div class="timeline-item">
<div class="timeline-icon">📅</div>
<div class="timeline-content">
<h3>2024-NOW</h3>
<h4>雲林科技大學 電機系 碩士</h4>
<p class="custom-text">專事於電機工程與相關研究。</p>
</div>
</div>
</div>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li class="custom-text">C#開發經驗</li>
<li class="custom-text">AOI影像處理</li>
<li class="custom-text">YOLO物件偵測技術</li>
<li class="custom-text">建立前端網站</li>
</ul>
</section>
<section id="program-language">
<!-- Programming Languages -->
<h2>program-language</h2>
<div class="row my-4">
<!-- C -->
<h4 class="col-md-2 prog-lang">C</h4>
<div class="col-md-4 mb-4 mb-md-0 d-flex flex-column justify-content-center">
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
C語言好難 (40%)
</div>
</div>
</div>
<!-- C# -->
<h4 class="col-md-2 prog-lang">C#</h4>
<div class="col-md-4 mb-4 mb-md-0 d-flex flex-column justify-content-center">
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
窩還在學 (40%)
</div>
</div>
</div>
<!-- Python -->
<h4 class="col-md-2 prog-lang">Python</h4>
<div class="col-md-4 mb-4 mb-md-0 d-flex flex-column justify-content-center">
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%">
GPT救救我 (50%)
</div>
</div>
</div>
</div>
</section>
</body>
</html>