-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
47 lines (43 loc) · 2.16 KB
/
portfolio.html
File metadata and controls
47 lines (43 loc) · 2.16 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
43
44
45
46
47
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Henry Tappa | Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Menu -->
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Portfolio Section -->
<section id="portfolio">
<h2>Portfolio</h2>
<div class="portfolio-grid">
<div class="portfolio-item">
<h3>Fruits Classification Using CNN</h3>
<p>This project is designed to build a deep learning neural network that can accurately classify images of different fruits. Potential applications of this network include automating Customs and Border Protections processes or for use in the agricultural industry.</p>
<a href="https://github.com/htappa/CNN-ImageClassification" target="_blank">View on GitHub</a>
</div>
<div class="portfolio-item">
<h3>DC Crime Mapping Tool</h3>
<p>This Python program provides residents of DC with an easy-to-use mapping tool as a first line of defense against potential criminal threats, giving them quick access to crime information in their area to inform decisions such as whether or not to take a taxi home at night, or where to park their car, thus heightening personal safety in the city. This program displays all 2019 crimes on an interactive map of DC, filtered by time of day, and by category of crime.</p>
<a href="https://github.com/htappa/DC_CrimeMappingTool" target="_blank">View on GitHub</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Henry Tappa. All rights reserved.</p>
</footer>
</body>
</html>