-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepvcs.html
139 lines (114 loc) · 4.95 KB
/
epvcs.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Express PVC Specialist |Occxlnce Creative Studio</title>
<link rel="shortcut icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://use.typekit.net/zhq0vyf.css">
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" href="oversight.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="pilot.css">
<link rel="stylesheet" href="css/nabar.css">
</head>
<body>
<header class="header">
<a href="index.html" class="logo">OCCXLNCE</a>
<i class='bx bx-menu' id="menu-icon"></i>
<nav class="navbar">
<a href="about.html">About</a>
<a href="portfolio.html">Work</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class="nav-bg"></div>
<br>
<br>
<br>
<div class="myslider">
<div class="list">
<div class="item">
<img src="img/epscover.png" alt="">
</div>
<div class="item">
<img src="img/epslogo.jpg" alt="">
</div>
<div class="item">
<img src="img/epvcscreen.png" alt="">
</div>
<div class="item">
<img src="img/epsphone.png" alt="">
</div>
<div class="item">
<img src="img/epservices.png" alt="">
</div>
</div>
<div class="buttons">
<button id="prev"><</button>
<button id="next">></button>
</div>
<ul class="dots">
<li class="active"></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="custom-card">
<div class="custom-content">
<p class="custom-heading">Express PVC Specialist</p>
<p class="custom-paragraph">
<b>WEB DEVELOPMENT </b>
<br>
<br>
<b>Year | 2024 </b>
<a href="https://epvcs.co.za/">Preview Link</a>
</p>
</div>
</div>
<section class="full sec-p">
<p><br>
At Occxlnce Creative Studio (OCS), we recognized the need for PVC Specialist to establish a strong online presence that reflects their expertise and dedication to transforming outdoor spaces with high-quality PVC solutions. Our goal was to create a website that not only showcases their extensive range of services but also enhances user engagement through a visually appealing, easy-to-navigate platform. We collaborated closely with the client to understand their business values and objectives, ensuring the website accurately represented their commitment to innovation and excellence. By incorporating a professional design with clean aesthetics, we aimed to build trust and authority for PVC Specialist in the outdoor solutions market.
<br>
<br>
To bring this vision to life, we employed cutting-edge web technologies, including HTML5 and CSS3, to develop a responsive, user-friendly interface. Key features such as a detailed services section, a projects gallery, and a seamless contact form were designed to make user interaction straightforward and intuitive. The website’s hero section was strategically placed to captivate visitors immediately, while the navigation and other sections like About and Projects guide them through PVC Specialist’s offerings effortlessly. By focusing on clear messaging, accessibility, and modern design practices, OCS was able to deliver a polished digital solution that elevates the brand and helps PVC Specialist connect with new clients.
</p>
</section>
<div class="cursor-wrap js-cursor-wrap">
<div class="cursor js-cursor">
<svg height="60" width="60" class="circle">
<circle cx="30" cy="30" r="26" stroke="#FD1F03" stroke-width="1.9" fill="transparent" />
</svg>
</div>
</div>
<!-- JAVASCRIPT FILES -->
<script src="css/cursor.js">
</script>
<script src="oversight.js">
</script>
<script src="pilot.js">
</script>
<script src="css/nabar.js">
</script>
<script src="dropdown.js">
</script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/gsap.min.js'></script>
<script src='https://cdn.jsdelivr.net/npm/locomotive-scroll@3.5.4/dist/locomotive-scroll.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.4.2/ScrollTrigger.min.js'></script>
<script src='https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/SplitText3.min.js'></script><script src="./script.js"></script>
<script>
const menuIcon = document.querySelector('#menu-icon');
const navbar = document.querySelector('.navbar');
const navbg = document.querySelector('.nav-bg');
menuIcon.addEventListener('click', () => {
menuIcon.classList.toggle('bx-x');
navbar.classList.toggle('active');
navbg.classList.toggle('active');
});
</script>
</body>
</html>