-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
54 lines (52 loc) · 1.86 KB
/
portfolio.html
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>Portfolio | Coding Caffeinated</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="logo">
<a href="index.html">Coding Caffeinated</a>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- Portfolio Section -->
<section class="portfolio">
<h2>My Work</h2>
<div class="projects-container">
<div class="project">
<h3>Project 1: E-Commerce Web App</h3>
<p>Developed a full-featured e-commerce platform using React and Node.js.</p>
<a href="#">View Project</a>
</div>
<div class="project">
<h3>Project 2: Mobile App</h3>
<p>Built a mobile app for a healthcare provider using React Native.</p>
<a href="#">View Project</a>
</div>
<div class="project">
<h3>Project 3: Cloud Migration</h3>
<p>Led cloud migration for a retail company, optimizing infrastructure with AWS.</p>
<a href="#">View Project</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Coding Caffeinated | Connect with me:</p>
<div class="social-icons">
<a href="https://twitter.com" target="_blank">Twitter</a>
<a href="https://github.com" target="_blank">GitHub</a>
<a href="https://linkedin.com" target="_blank">LinkedIn</a>
</div>
</footer>
</body>
</html>