-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
54 lines (50 loc) · 2.02 KB
/
portfolio.html
File metadata and controls
54 lines (50 loc) · 2.02 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
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jack Skates - Portfolio</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="bio.html">Bio</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
</header>
<main>
<h1>Project Portfolio</h1>
<div class="projects-grid">
<a href="https://github.com/JRSkates/excuse" class="project-card">
<img src="images/excuse-project.jpg" alt="Excuse Project">
<article class="project-info">
<h3>Excuse - Creative Excuse Generator</h3>
<p>Led the development of a mobile app using React Native and Open AI API to generate excuses. Gained expertise in leading an Agile team.</p>
</article>
</a>
<a href="https://github.com/JRSkates/acebook-fire" class="project-card">
<img src="images/acebook-project.jpg" alt="Acebook Project">
<article class="project-info">
<h3>Acebook Fire - Facebook Clone</h3>
<p>Worked collaboratively to develop a MERN stack Facebook clone using TDD with Jest and Cypress.</p>
</article>
</a>
<a href="https://github.com/JRSkates/ruBnB" class="project-card">
<img src="images/rubnb-project.jpg" alt="RuBnB Project">
<article class="project-info">
<h3>RuBnB - AirBnB Clone</h3>
<p>Built an AirBnB clone using Ruby, Sinatra, HTML/CSS, and RSpec.</p>
</article>
</a>
</div>
</main>
<footer>
<p>© 2024 Jack Skates</p>
</footer>
</body>
</html>