-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio1.html
105 lines (90 loc) · 5.13 KB
/
portfolio1.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>Portfolio | 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">Riverside Fourways</span>
<span class="text-bold">Custom Pool Cover Installation for Elia Khosa</span>
</div>
<div class="clover">
<a
href="uno.html"
target="_blank"
rel="noopener noreferrer"
>
<img
src="img/uno.jpg"
alt="Photo by occxlnce"
/>
</a>
</div>
<ul class="info">
<li>
<span class="text-bold"><b>Client Overview:</b></span>
<span class="text-light">Elia Khosa, a homeowner residing in Riverside Fourways, required a durable and aesthetically pleasing pool cover for his luxurious mansion. The mansion, featuring both ground and upper floors with structural support pillars, boasts a swimming pool located adjacent to these pillars.</span>
</li>
<li>
<span class="text-bold"><b>Project Objective:</b></span>
<span class="text-light">The goal was to design, manufacture, and install a custom blue pool cover that not only fits perfectly but also enhances the aesthetic appeal and functionality of the pool area.</span>
</li>
<li>
<span class="text-bold"><b>Scope of Work:</b></span>
<span class="text-light">The scope included an initial site assessment to understand the specific requirements, followed by precision measurements to ensure a perfect fit for the pool cover. The pool cover was then custom-designed and manufactured, taking into account the close proximity of the pool to the structural pillars. Finally, the cover was installed, ensuring both durability and ease of use.</span>
</li>
<li>
<span class="text-bold"><b>Challenges and Solutions:</b></span>
<span class="text-light">The main challenge was fitting the pool cover precisely around the pillars without compromising on its protective qualities or aesthetic appeal. This was addressed by carefully designing the cover to account for the pillars, ensuring a snug fit and seamless integration with the pool area.</span>
</li>
<li>
<span class="text-bold"><b>Materials Used:</b></span>
<span class="text-light">A premium-grade blue PVC material was used for the pool cover, chosen for its durability, UV resistance, and appealing look. The high-quality material ensures long-lasting protection and minimal maintenance for the client.</span>
</li>
<li>
<span class="text-bold"><b>Project Outcome:</b></span>
<span class="text-light">The completed pool cover installation perfectly fit the pool area, providing robust protection while enhancing the overall look of the mansion's exterior. Elia Khosa was extremely satisfied with the outcome, noting the significant reduction in debris and maintenance efforts.</span>
</li>
</ul>
<div class="title title--secondary">
<span class="text-light">Installation Date:</span>
<span class="text-bold"><b>08 May 2023</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>