-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject1.html
More file actions
80 lines (70 loc) · 2.91 KB
/
project1.html
File metadata and controls
80 lines (70 loc) · 2.91 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
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[Project 1 Title] - Pem Tech Solution Portfolio</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>[Project 1 Title]</h1>
</section>
<section class="project-details">
<div class="project-overview">
<h2>Project Overview</h2>
<p>Provide a detailed overview of the project, including the client's needs and objectives.</p>
</div>
<div class="project-challenges">
<h2>Challenges</h2>
<p>Describe the specific challenges encountered during the project and how they were addressed.</p>
</div>
<div class="our-solutions">
<h2>Our Solutions</h2>
<p>Detail the solutions and technologies implemented by Pem Tech Solution.</p>
<ul>
<li>Solution Point 1</li>
<li>Solution Point 2</li>
</ul>
</div>
<div class="project-outcomes">
<h2>Project Outcomes</h2>
<p>Highlight the successful outcomes and results achieved for the client.</p>
</div>
<div class="project-gallery">
<h2>Project Gallery (Optional)</h2>
<div class="gallery-images">
<img src="images/project1-large1.jpg" alt="[Project 1 Image 1 Alt Text]">
<img src="images/project1-large2.jpg" alt="[Project 1 Image 2 Alt Text]">
</div>
</div>
<a href="portfolio.html" class="button">Back to Portfolio</a>
</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>