Skip to content
Snippets Groups Projects
project.html 2.13 KiB
Newer Older
Yinglong Fang's avatar
Yinglong Fang committed
<!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>