-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
70 lines (62 loc) · 2.82 KB
/
portfolio.html
File metadata and controls
70 lines (62 loc) · 2.82 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Pem Tech Solution</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Pem Tech Solution</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="page-header">
<h1>Our Portfolio: Showcasing Innovation</h1>
<p>Explore a selection of our successful projects and the solutions we've delivered for our clients.</p>
</section>
<section class="portfolio-grid">
<div class="portfolio-item">
<img src="images/project1-thumbnail.jpg" alt="[Project 1 Alt Text]">
<h3>[Client Name/Project Type 1] - [Brief Description 1]</h3>
<p>A brief overview of the project, highlighting the challenges and our solutions.</p>
<a href="project1.html" class="button">View Project Details</a>
</div>
<div class="portfolio-item">
<img src="images/project2-thumbnail.jpg" alt="[Project 2 Alt Text]">
<h3>[Client Name/Project Type 2] - [Brief Description 2]</h3>
<p>An outline of the project goals and the technologies we employed.</p>
<a href="project2.html" class="button">View Project Details</a>
</div>
<div class="portfolio-item">
<img src="images/project3-thumbnail.jpg" alt="[Project 3 Alt Text]">
<h3>[Client Name/Project Type 3] - [Brief Description 3]</h3>
<p>The key features and outcomes of this successful engagement.</p>
<a href="project3.html" class="button">View Project Details</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 Pem Tech Solution. All rights reserved.</p>
</footer>
<script src="script.js"></script>
<button id="back-to-top-btn" title="Go to top">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/>
<path d="M0 0h24v24H0z" fill="none"/>
</svg>
</button>
</body>
</html>