-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
359 lines (346 loc) · 12.8 KB
/
index.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Creative Agency</title>
<link rel="stylesheet" href="css/fontawesome.min.css" />
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="css/master.css" />
<link rel="stylesheet" href="css/normlaize.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="imgs/laptop-code-solid.svg">
</head>
<body>
<!-- Start Setting Box -->
<div class="setting-box">
<div class="toggle-setting">
<i class="fa fa-gear"></i>
</div>
<div class="setting-container">
<div class="option-box">
<h4>Colors</h4>
<ul class="colors-list">
<li class="acitve" data-color="#ff9800"></li>
<li data-color="#1ea5e9"></li>
<li data-color="#e91eba"></li>
<li data-color="#4a1ee9"></li>
<li data-color="#e9d11e"></li>
</ul>
</div>
<div class="option-box">
<h4>Random Backgrounds</h4>
<div class="random-backgrounds">
<span data-background="yes" class="yes active">Yes</span>
<span data-background="no" class="no">No</span>
</div>
</div>
<div class="option-box">
<h4>Show Bullets</h4>
<div class="options">
<span data-option="yes" class="yes active">Yes</span>
<span data-option="no" class="no">No</span>
</div>
</div>
<button class="reset-optinos">Reset Options</button>
</div>
</div>
<!-- End Setting Box -->
<!-- Start Landing Page -->
<div class="landing-page">
<div class="overlay"></div>
<div class="container">
<div class="header-area">
<div class="logo">Creative Agency</div>
<div class="links-container">
<ul class="links">
<li>
<span class="active" data-section=".about-us"> About</span>
</li>
<li><span data-section=".skills">Skills</span></li>
<li><span data-section=".gallery">Gallery</span></li>
<li><span data-section=".timeline">Timeline</span></li>
<li><span data-section=".features">Features</span></li>
<li><span data-section=".testimonials">Testimonials</span></li>
</ul>
<button class="toggle-menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
</div>
<div class="intro-text">
<h1>We Are <span>Creative</span> Agency</h1>
<p>
We are a web development company specializing in creating innovative and customized digital solutions tailored to meet the unique needs of our clients.
</p>
</div>
</div>
<!-- Start Landing Page -->
<!-- Start about Us -->
<div class="container">
<div class="about-us">
<div class="info-box">
<h2>About Us</h2>
<p>
Our team consists of skilled developers, creative designers, and experienced project managers who work collaboratively to turn your ideas into successful websites and applications. We are committed to delivering high-quality services that ensure client satisfaction and provide an exceptional user experience.
</p>
</div>
<div class="img-box">
<img src="imgs/about-us.jpg" alt="" />
</div>
</div>
</div>
<!-- end about Us -->
<!-- Start Skills -->
<div class="skills">
<div class="container">
<h2>Our Skills</h2>
<div class="skill-box">
<div class="skill-name">HTML</div>
<div class="skill-progress">
<span data-progress="80%"></span>
</div>
</div>
<div class="skill-box">
<div class="skill-name">CSS</div>
<div class="skill-progress">
<span data-progress="90%"></span>
</div>
</div>
<div class="skill-box">
<div class="skill-name">JavaScript</div>
<div class="skill-progress">
<span data-progress="70%"></span>
</div>
</div>
<div class="skill-box">
<div class="skill-name">PHP</div>
<div class="skill-progress">
<span data-progress="85%"></span>
</div>
</div>
<div class="skill-box">
<div class="skill-name">MySQL</div>
<div class="skill-progress">
<span data-progress="60%"></span>
</div>
</div>
<div class="skill-box">
<div class="skill-name">Java</div>
<div class="skill-progress">
<span data-progress="75%"></span>
</div>
</div>
</div>
</div>
<!-- End Skills -->
<!-- Start Gallery -->
<div class="gallery">
<div class="container">
<h2>Our Gallery</h2>
<div class="images-box">
<img src="imgs/landing-01.jpg" alt="Image One" />
<img src="imgs/shffle (1).jpg" alt="Image Two" />
<img src="imgs/shffle (1).webp" alt="Image Three" />
<img src="imgs/shffle (2).jpg" alt="Image Four" />
<img src="imgs/shffle (3).jpg" alt="Image Five" />
<img src="imgs/shffle (4).jpg" alt="" />
<img src="imgs/shffle (5).jpg" alt="" />
<img src="imgs/shffle (6).jpg" alt="" />
<img src="imgs/shffle (7).jpg" alt="" />
<img src="imgs/shffle (8).jpg" alt="" />
</div>
</div>
</div>
<!-- End Gallery -->
<!-- Start TimeLine -->
<div class="timeline">
<div class="container">
<div class="timeline-content">
<div class="year">Discovery & Planning</div>
<div class="left">
<div class="content">
<h3>Client Consultation</h3>
<p>
Understand the client's vision, goals, and requirements.
</p>
</div>
</div>
<div class="clearfix"></div>
<div class="right">
<div class="content">
<h3>Proposal & Agreement</h3>
<p>
Present a detailed proposal and finalize the contract.
</p>
</div>
</div>
<div class="clearfix"></div>
<div class="year">Wireframing & Design</div>
<div class="left">
<div class="content">
<h3>Wireframing</h3>
<p>
Create wireframes to map out the website's structure.
</p>
</div>
</div>
<div class="clearfix"></div>
<div class="left">
<div class="content">
<h3>Design Concepts</h3>
<p>
Develop initial design concepts based on client feedback.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End TimeLine -->
<!-- Start Features -->
<div class="features">
<h2>Services</h2>
<div class="container">
<div class="feat-box">
<img src="https://cdn2.hubspot.net/hubfs/4025306/Imported_Blog_Media/custom-website-development-1.png" alt="" />
<h4>Custom Web Development</h4>
<p>
We develop custom websites using the latest technologies to ensure speed, performance, and security.
</p>
</div>
<div class="feat-box">
<img src="imgs/landing-01.jpg" alt="" />
<h4>Devlopment</h4>
<p>
We are proffissionls in work, and we are the best, we are ready for
any kind of work.
</p>
</div>
<div class="feat-box">
<img src="https://thirdessential.com/wp-content/uploads/2022/02/Website-Development-Designing.png" alt="" />
<h4>UI/UX Design</h4>
<p>
We design attractive and user-friendly interfaces that ensure effective interaction between users and your website.
</p>
</div>
<div class="feat-box">
<img src="https://solutionsurface.com/wp-content/uploads/2020/04/Custom-web-development-simple-guide.png" alt="" />
<h4>Web Application Development</h4>
<p>
We build powerful web applications that enable you to manage your business efficiently online.
</p>
</div>
<div class="feat-box">
<img src="https://senotrix.co.uk/wp-content/uploads/2019/12/senotrixuxui5-scaled.jpg" alt="" />
<h4>Search Engine Optimization (SEO)</h4>
<p>
We help you improve your website's visibility in search engine results and increase your site's traffic.
</p>
</div>
<div class="feat-box">
<img src="https://lform.com/cms/resources/media/2021/01/custom-web-development-app-1184x694.jpg" alt="" />
<h4>E-commerce Solutions</h4>
<p>
We offer comprehensive e-commerce solutions that allow you to sell your products online with ease.
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- End Features -->
<!-- Start Testimonials -->
<div class="testimonials">
<div class="container">
<h2>Testimonials</h2>
<div class="ts-box">
<p>
Exceptional service and top-notch quality! The team at [Your Company Name] exceeded our expectations in every way. Our new website is not only beautiful but also highly functional.
</p>
<div class="person-info">
<img src="http://www.pngall.com/wp-content/uploads/5/User-Profile-PNG-High-Quality-Image.png" alt="" />
<h4>Jane Doe</h4>
<p>— CEO of XYZ Corp.</p>
</div>
</div>
<div class="ts-box">
<p>
Working with [Your Company Name] was a game-changer for our business. They delivered on time and went above and beyond to ensure our satisfaction. We couldn’t be happier with the results
</p>
<div class="person-info">
<img src="http://www.pngall.com/wp-content/uploads/5/User-Profile-PNG-High-Quality-Image.png" alt="" />
<h4> John Smith</h4>
<p>Founder of ABC Ventures</p>
</div>
</div>
<div class="ts-box">
<p>
Professional, creative, and highly skilled. [Your Company Name] took our vision and turned it into a reality. Their attention to detail and dedication to client satisfaction is unmatched.
</p>
<div class="person-info">
<img src="http://www.pngall.com/wp-content/uploads/5/User-Profile-PNG-High-Quality-Image.png" alt="" />
<h4>Emily Johnson</h4>
<p>Marketing Director at DEF Solutions</p>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<!-- End Testimonials -->
<!-- Start Nav Bullets -->
<div class="nav-bullets">
<div data-section=".about-us" class="bullet">
<div class="tooltip">About Us</div>
</div>
<div data-section=".skills" class="bullet">
<div class="tooltip">Our Skills</div>
</div>
<div data-section=".gallery" class="bullet">
<div class="tooltip">Our Gallery</div>
</div>
<div data-section=".timeline" class="bullet">
<div class="tooltip">TimeLine</div>
</div>
<div data-section=".features" class="bullet">
<div class="tooltip">Features</div>
</div>
<div data-section=".testimonials" class="bullet">
<div class="tooltip">Testimonials</div>
</div>
</div>
<!-- End Nav Bullets -->
<!-- Start contact -->
<div class="contact">
<div class="overlay"></div>
<div class="container">
<h2>Contact Us</h2>
<form action="">
<div class="left">
<input type="text" placeholder="Your Name" name="username" />
<input type="text" placeholder="Your phone" name="phone" />
<input type="mail" placeholder="Your Email" name="mail" />
<input type="text" placeholder="Subject" name="subject" />
</div>
<div class="right">
<textarea name="message" placeholder="Message"></textarea>
<input type="submit" value="Send" />
</div>
</form>
</div>
</div>
<!-- End contact -->
<!-- Start Footer -->
<div class="footer">Created With Love By <span>Osama</span> Alsairy</div>
<!-- End Footer -->
<script src="js/master.js"></script>
</body>
</html>