-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjects.html
More file actions
42 lines (42 loc) · 1.33 KB
/
Projects.html
File metadata and controls
42 lines (42 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<div id = "background">
<head>
<meta charset="UTF-8">
<meta name = "description" content = "test test test">
<title>Projects</title>
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<nav>
<ul>
<div class = "navback">
<li><a href="/">Home</a></li>
<li><a href="/Projects.html">Projects</a></li>
<li><a href="/resume/Resume.pdf">Resume</a></li>
<li><a href="https://github.com/stantonzeng">Github</a></li>
</div>
</ul>
</nav>
<div class="container">
<div class="blurb">
<h1>Stanton Zeng</h1>
<p> This is just a place to record all of my personal software projects.</p>
<div class = "projects">
<li><a href="https://github.com/stantonzeng/solo-chess">Chess</a></li>
<li><a href="https://github.com/stantonzeng/RYZ/tree/main/ryz/final-project-ryz-master">Text-Based RPG</a></li>
</div><!-- /.projects -->
<p>
Currently I am working on deep learning and convolutional neural networks to be implemented with openCV. On the side I am also learning javascript and React.
</p>
</div><!-- /.blurb -->
</div><!-- /.container -->
<footer>
<ul>
<li>stantonzeng@gmail.com</li>
</ul>
</footer>
</body>
</div> <!-- /.background-->
<script src = "js/test.js"></script>
</html>