Skip to content
Snippets Groups Projects
Commit f8079707 authored by Yinglong Fang's avatar Yinglong Fang
Browse files

Upload New File

parent aed56317
No related branches found
No related tags found
No related merge requests found
<!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">SKills</h1>
<hr/>
<div class="container">
{% for skill in skills %}
<div class="grid-item">
<h3>{{skill['skillname']}}</h3>
<img class="grid-image" src={{url_for('static', filename = skill['image'])}}/>
</div>
{% endfor %}
</div>
</main>
<!-- footer -->
<footer>&#169; 2024 by Yinglong Fang. All Rights Reserved.</footer>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment