forked from vishanurag/Canvas-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testimonial.html
451 lines (434 loc) · 16.6 KB
/
testimonial.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Canvas Tool - Reviews, Testimonials & Popular Services</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="src/Styles/scroll.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
/* Navbar Styling starts*/
.navbar {
background-color: #333; /* Dark background */
display: flex;
justify-content: center;
align-items: baseline;
flex-wrap: wrap;
border-bottom: none;
}
.title {
display: flex;
align-items: left;
color: white;
font-size: 1.5rem;
font-weight: bold;
justify-content: center;
}
/* Styling individual links in the navbar */
.navbar a {
color: #a0a0a0; /* Link color */
font-size: 18px; /* Font size */
text-decoration: none; /* Remove underline */
padding: 0.5rem 1rem;
border-radius: 0.5rem; /* Rounded corners for hover effect */
transition: background-color 0.3s ease; /* Smooth hover transition */
}
.nav-links {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.nav-links a:hover {
color: #ffffff;
}
/* navbar styling ends */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
padding: 2rem;
}
header {
background-color: #2c3e50;
color: #ecf0f1;
text-align: center;
padding: 2rem 0;
margin-bottom: 2rem;
}
h1, h2 {
margin: 0;
padding: 1rem 0;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
color: #2c3e50;
text-align: center;
margin-top: 3rem;
}
.subtitle {
font-size: 1.2rem;
font-style: italic;
margin-top: 0.5rem;
}
.testimonial-grid, .services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.testimonial, .service {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
transition: transform 0.3s ease;
}
.testimonial:hover, .service:hover {
transform: translateY(-5px);
}
.testimonial img, .service img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
}
.testimonial h3, .service h3 {
margin: 0 0 0.5rem 0;
color: #2c3e50;
}
.testimonial p, .service p {
font-style: italic;
color: #7f8c8d;
}
.rating {
color: #f1c40f;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.cta {
text-align: center;
margin-top: 3rem;
padding: 2rem;
background-color: #3498db;
color: #fff;
border-radius: 10px;
}
.cta-button {
display: inline-block;
background-color: #2c3e50;
color: #fff;
text-decoration: none;
padding: 1rem 2rem;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
margin-top: 1rem;
}
.cta-button:hover {
background-color: #1a252f;
}
.stats {
display: flex;
justify-content: space-around;
margin: 3rem 0;
text-align: center;
}
.stat-item {
background-color: #2c3e50;
color: #ecf0f1;
padding: 1.5rem;
border-radius: 10px;
width: 200px;
}
.stat-number {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 0.5rem;
}
.features {
background-color: #ecf0f1;
padding: 3rem 0;
margin: 3rem 0;
}
.feature-list {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.feature-item {
width: 30%;
min-width: 250px;
margin: 1rem;
text-align: center;
}
.feature-icon {
font-size: 3rem;
color: #3498db;
margin-bottom: 1rem;
}
.home-button {
position: absolute;
top: 20px;
left: 20px;
background-color: #2c3e50;
color: #ecf0f1;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.home-button:hover {
background-color: #34495e;
}
.navbar-brand {
font-weight: bolder;
padding-top: 30px;
text-align: center;
width: 100%;
font-size: 2.5rem;
}
.navbar-nav .nav-link {
color: #e0e2e2; /* Default link color */
}
.navbar-nav .nav-link.active {
font-weight: bold; /* Bold active link */
}
</style>
</head>
<body>
<nav class="navbar">
<div class="title">
<h1 class="site-name">Canvas Editor</h1>
<i class="fa-solid fa-paintbrush" style="margin: 25px 0 0 0;"></i>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about-us.html">About</a>
<a href="privacy.html">Privacy</a>
<a href="Blog_page.html">Blogs</a>
<a href="Faq.html">FAQ</a>
<a href="contributors.html">Contributors</a>
<a href="testimonial.html">Testimonial</a>
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</div>
/* Back to Top Button */
#BacktoTop {
position: fixed; /* Stay in fixed position */
bottom: 50px; /* Positioned above the chatbot */
right: 5px; /* Aligned to the right */
width: 55px;
height: 55px;
background-color: #007bff; /* Button background */
color: white; /* Text color */
padding: 10px 15px; /* Padding for button size */
border-radius: 50%; /* Circular button */
border: none;
font-size: 24px; /* Size of the text or arrow */
font-weight: bolder;
display: block; /* Initially hidden */
visibility: hidden;
z-index: 1000; /* Ensures it is above most elements */
cursor: pointer; /* Pointer when hovered */
}
#BacktoTop:hover {
background-color: #0056b3; /* Change to a lighter blue on hover */
transform: scale(1.1);
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<!-- <a class="navbar-brand" href="#">Creative Canvas Tool</a> -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="review.html">Review</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="testimonial.html">Testimonial</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="tutorial.html">Tutorial</a>
</li>
<li class="nav-item">
<a class="nav-link" href="privacy.html">Privacy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog_page.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.html">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="signup.html">Sign Up</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contributors.html">Contributors</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<section class="stats">
<div class="stat-item">
<div class="stat-number">10k+</div>
<div class="stat-label">Happy Users</div>
</div>
<div class="stat-item">
<div class="stat-number">1M+</div>
<div class="stat-label">Designs Created</div>
</div>
<div class="stat-item">
<div class="stat-number">4.8</div>
<div class="stat-label">Average Rating</div>
</div>
</section>
<h2>What Our Customers Are Saying</h2>
<div class="testimonial-grid">
<div class="testimonial">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
</svg>
</div>
<h3>Sarah J.</h3>
<div class="rating">★★★★★</div>
<p>"Creative Canvas Tool has revolutionized my design process. It's intuitive, powerful, and a joy to use!"</p>
</div>
<div class="testimonial">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
</svg>
</div>
<h3>Mark T.</h3>
<div class="rating">★★★★☆</div>
<p>"As a marketing professional, this tool has saved me countless hours. The templates are top-notch!"</p>
</div>
<div class="testimonial">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
</svg>
</div>
<h3>Emily R.</h3>
<div class="rating">★★★★★</div>
<p>"I'm not a designer, but Creative Canvas Tool makes me feel like one. It's so easy to create beautiful graphics!"</p>
</div>
<div class="testimonial">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
</svg>
</div>
<h3>Alex K.</h3>
<div class="rating">★★★★☆</div>
<p>"The variety of templates and the ease of customization are unmatched. It's my go-to for all design needs!"</p>
</div>
</div>
<h2>Services Loved The Most</h2>
<div class="services-grid">
<div class="service">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/>
</svg>
</div>
<h3>Social Media Graphics</h3>
<p>"Perfect for creating eye-catching posts for all platforms. The pre-sized templates are a huge time-saver!"</p>
</div>
<div class="service">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 2L1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM13 16h-2v2h2v-2zm0-6h-2v4h2v-4z"/>
</svg>
</div>
<h3>Logo Design</h3>
<p>"The logo maker is intuitive and offers a wide range of customization options. It's great for branding projects!"</p>
</div>
<div class="service">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/>
</svg>
</div>
<h3>Infographic Creator</h3>
<p>"Turning complex data into visually appealing infographics has never been easier. Love the chart options!"</p>
</div>
<div class="service">
<div class="icon-container">
<svg class="icon" viewBox="0 0 24 24">
<path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/>
</svg>
</div>
<h3>Photo Editor</h3>
<p>"The photo editing tools are powerful yet easy to use. I can enhance my images without any prior experience!"</p>
</div>
</div>
<section class="features">
<h2>Why Choose Creative Canvas Tool?</h2>
<div class="feature-list">
<div class="feature-item">
<div class="feature-icon">🎨</div>
<h3>User-Friendly Interface</h3>
<p>Intuitive design that anyone can master, regardless of experience level.</p>
</div>
<div class="feature-item">
<div class="feature-icon">🚀</div>
<h3>Time-Saving Templates</h3>
<p>Hundreds of professionally designed templates to jumpstart your creativity.</p>
</div>
<div class="feature-item">
<div class="feature-icon">💡</div>
<h3>Endless Customization</h3>
<p>Flexible tools that allow you to bring your unique vision to life.</p>
</div>
</div>
<!-- Back to Top Button -->
<button id="BacktoTop">
<span>↑</span>
</button>
</section>
<div class="cta">
<h2>Ready to unleash your creativity?</h2>
<p>Join thousands of satisfied users and start designing today!</p>
<a href="index.html#mainCanvas" class="cta-button">Start Drawing Now ➡ </a>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="src/Scripts/BacktoTop.js"></script>
</body>
</html>