personal-site/projects.html
Arthur Lu c70993ed7d implement site changes from cse 134
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-03-22 15:22:02 -07:00

33 lines
939 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>My Projects - Arthur Lu</title>
<link rel="stylesheet" href="styles/styles.css" type="text/css">
<link rel="stylesheet" href="styles/projects.css" type="text/css">
<link rel="icon" type="image/x-icon" href="/images/favicon.svg">
<script src="scripts/projects.js" type="module"></script>
</head>
<body>
<header>
<h1 styles="margin: 10px;">My Projects</h1>
<nav>
<a href="index.html">Go Back</a>
</nav>
</header>
<main>
<div class="flexbox" id="projects">
</div>
</main>
<footer>&copy; 2023 - Arthur Lu</footer>
<template id="project-article">
<article>
<h2 id="project-name"></h2>
<p id="project-desc"></p>
<p id="project-lang"></p>
</article>
</template>
</body>
<footer>&copy; 2023 - Arthur Lu</footer>
</html>