-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio2.html
105 lines (90 loc) · 5.02 KB
/
portfolio2.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Explore the latest projects by Express PVC Specialist. From pool covers to retractable awnings, discover our innovative solutions and craftsmanship.">
<meta name="keywords" content="Express PVC Specialist projects, PVC solutions, pool covers, retractable awnings, outdoor projects, innovative design">
<link rel="icon" type="image/png" href="img/EPS.png" sizes="16x16">
<link rel="icon" type="image/png" href="img/EPS.png" sizes="32x32">
<link rel="icon" type="image/png" href="img/EPS.png" sizes="64x64">
<title>Project | EPS</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/snowcard.css">
<link rel="stylesheet" href="css/poster.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0">
</head>
<body>
<header>
<nav class="navbar">
<a class="logo" href="index.html">EPS<span>.</span></a>
<ul class="menu-links">
<span id="close-menu-btn" class="material-symbols-outlined">close</span>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="services.html">Solutions</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="contact.html">Contact us</a></li>
</ul>
<span id="hamburger-btn" class="material-symbols-outlined">menu</span>
</nav>
</header>
<body>
<main class="grid">
<div class="title title--primary">
<span class="text-light">Pimville Soweto</span>
<span class="text-bold">Custom Pool Cover Installation for Albert Ndlovu</span>
</div>
<div class="clover">
<a
href="portfolio2.html"
target="_blank"
rel="noopener noreferrer"
>
<img
src="img/dos.jpg"
alt="Photo by occxlnce"
/>
</a>
</div>
<ul class="info">
<li>
<span class="text-bold"><b>Client Overview:</b></span>
<span class="text-light">Albert Ndlovu, a resident of Soweto Pimville, sought a stylish and functional pool cover for his expansive property. His double-storey mansion, featuring a striking blue roof and surrounded by a lush, green yard, needed a pool cover that would blend seamlessly with the existing aesthetics.</span>
</li>
<li>
<span class="text-bold"><b>Project Objective:</b></span>
<span class="text-light">To design, manufacture, and install a custom pool cover that complements the property's color scheme and provides durable protection for the pool.</span>
</li>
<li>
<span class="text-bold"><b>Scope of Work:</b></span>
<span class="text-light">The project involved a comprehensive site evaluation to capture precise measurements and understand the client’s requirements. The pool cover was designed with a blue surface and a grey outline to match the house’s exterior. The installation process ensured a perfect fit and alignment with the yard's landscape.</span>
</li>
<li>
<span class="text-bold"><b>Challenges and Solutions:</b></span>
<span class="text-light">The main challenge was to create a pool cover that harmonized with the house’s grey and blue color scheme while ensuring it fit perfectly within the expansive yard. Careful attention to color matching and precise measurements ensured that the cover not only looked great but also provided effective protection.</span>
</li>
<li>
<span class="text-bold"><b>Materials Used:</b></span>
<span class="text-light">The pool cover was crafted from high-quality, UV-resistant PVC material in blue, with a durable grey outline. This combination was chosen to enhance the visual appeal and longevity of the cover.</span>
</li>
<li>
<span class="text-bold"><b>Project Outcome:</b></span>
<span class="text-light">The custom pool cover, installed on 15 April 2024, matched the aesthetic of Albert Ndlovu’s mansion perfectly. The cover’s blue and grey hues complemented the house’s blue roof and grey exterior, while providing robust protection for the pool.</span>
</li>
</ul>
<div class="title title--secondary">
<span class="text-light">Installation Date:</span>
<span class="text-bold"><b>15 April 2024</b></span>
</div>
</main>
<script>
const header = document.querySelector("header");
const hamburgerBtn = document.querySelector("#hamburger-btn");
const closeMenuBtn = document.querySelector("#close-menu-btn");
// Toggle mobile menu on hamburger button click
hamburgerBtn.addEventListener("click", () => header.classList.toggle("show-mobile-menu"));
// Close mobile menu on close button click
closeMenuBtn.addEventListener("click", () => hamburgerBtn.click());
</script>
</body>