-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio6.html
109 lines (95 loc) · 5.27 KB
/
portfolio6.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
106
107
108
109
<!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>
<main class="grid">
<div class="title title--primary">
<span class="text-light">Thembisa Clayville</span>
<span class="text-bold">Custom Pool Cover Installation for Desmond Ngobeni</span>
</div>
<div class="clover">
<a href="portfolio6.html" target="_blank" rel="noopener noreferrer">
<img src="img/seis.jpg" alt="Photo by occxlnce" />
</a>
</div>
<ul class="info">
<li>
<span class="text-bold"><b>Client Overview:</b></span>
<span class="text-light">
Desmond Ngobeni, a resident of Thembisa Clayville, has a beautifully designed outdoor space featuring a large pool on the backyard creating an aesthetically pleasing scenery.
</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 backyard surroundings while providing effective protection for the pool.
</span>
</li>
<li>
<span class="text-bold"><b>Scope of Work:</b></span>
<span class="text-light">
The project began with a detailed consultation to understand Desmond’s requirements and preferences. The aim was to create a pool cover that not only provided functionality but also enhanced the aesthetic appeal of the backyard and pool area.
</span>
</li>
<li>
<span class="text-bold"><b>Challenges and Solutions:</b></span>
<span class="text-light">
The primary challenge was to ensure the pool cover blended seamlessly with the garden's aesthetic and the overall design of the outdoor space. EPS addressed this by selecting a color and material that would harmonize with the natural surroundings.
</span>
</li>
<li>
<span class="text-bold"><b>Materials Used:</b></span>
<span class="text-light">
A blue pool cover was chosen to complement the serene ambiance of the garden and pool area. The cover was made from high-quality, UV-resistant material, ensuring durability and long-lasting protection.
</span>
</li>
<li>
<span class="text-bold"><b>Project Outcome:</b></span>
<span class="text-light">
Installed on February 13, 2024, the custom blue pool cover enhances the beauty of Desmond’s outdoor space while providing robust protection for the pool. The cover blends perfectly with the aesthetic garden, creating a harmonious and visually appealing environment.
</span>
</li>
</ul>
<div class="title title--secondary">
<span class="text-light">Installation Date:</span>
<span class="text-bold"><b>13 February 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>
</html>