From aed5631759026b724800cd1205530febd662f23a Mon Sep 17 00:00:00 2001
From: Yinglong Fang <fangy25@cardiff.ac.uk>
Date: Wed, 10 Jan 2024 10:05:34 +0000
Subject: [PATCH] Upload New File

---
 templates/project.html | 66 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)
 create mode 100644 templates/project.html

diff --git a/templates/project.html b/templates/project.html
new file mode 100644
index 0000000..0e0caf8
--- /dev/null
+++ b/templates/project.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="utf-8">
+    <title>Resume</title>
+    <link rel=stylesheet type=text/css href="{{ url_for('static',
+filename='styles.css') }}">
+</head>
+
+<body class="resume">
+    <!--header//-->
+    <header>
+        <div class="nav">
+		<ul class="item">
+			<li><a href="/home">Home</a></li>
+			<li><a href="/education">Education</a></li>
+			<li><a href="/project">Project</a></li>
+			<li><a href="/skill">Skill</a></li>
+			<li><a href="/contact">Contact Me</a></li>
+		</ul>
+		</div>
+    </header>
+
+    <!--main-->
+    <main class="main">
+        <h1 class="title">Projects</h1>
+        <hr/>
+        <div class="card">
+            Responsible for the writing of the establishment and the operation of the website in the Micro Mouse
+project in the year2. In general, the project includes of the shell design, website part, PCB design of IC
+circuit and code writing.
+        </div>
+        <h3>Controlling and Maximising Semiconductor Wafer Yields</h3>
+        <div class="project-container">
+
+            <div class="grid-item">
+                <img class="grid-image" src={{url_for('static', filename = 'p1-1.png')}}/>
+            </div>
+            <div class="grid-item">
+                <img class="grid-image" src={{url_for('static', filename = 'p1-2.png')}}/>
+            </div>
+            <div class="grid-item">
+                <img class="grid-image" src={{url_for('static', filename = 'p1-3.png')}}/>
+            </div>
+        </div>
+        <h3>Statistical Analysis for The Uniformity of The Coating</h3>
+        <div class="project-container">
+
+            <div class="grid-item">
+                <img class="grid-image" src={{url_for('static', filename = 'p2-1.png')}}/>
+            </div>
+            <div class="grid-item">
+                <img class="grid-image" src={{url_for('static', filename = 'p2-2.png')}}/>
+            </div>
+            <div class="grid-item">
+                <img class="grid-image" src={{url_for('static', filename = 'p2-3.png')}}/>
+            </div>
+        </div>
+    </main>
+
+    <!-- footer -->
+    <footer>&#169; 2024 by Yinglong Fang. All Rights Reserved.</footer>
+</body>
+
+</html>
\ No newline at end of file
-- 
GitLab