-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
747 lines (651 loc) · 21.9 KB
/
about.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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
body {
background-color: rgb(19, 32, 67);
font-family: "Noto Sans KR", sans-serif;
margin: auto;
}
.hide{
display: none;
}
.header {
position: sticky;
top: 0;
margin: auto;
/* border: 1px solid red; */
max-width: 1580px;
height: 80px;
background-color: rgb(19, 32, 67);
color: white;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.1s ease, opacity 0.3s ease;
z-index: 1000;
}
nav {
display: flex;
padding: 0% 6%;
justify-content: space-between;
align-items: center;
color: #FDF0F0;
width: 1580px;
margin: auto;
}
nav img {
width: 75px;
height: 68px;
border-radius: 53px;
}
.nav-links {
flex: 1;
display: flex;
justify-content: flex-end;
align-items: center;
overflow: hidden;
}
.nav-links ul {
display: flex;
justify-content: flex-end;
/* margin-top: 20px; */
}
.nav-links ul li {
list-style: none;
padding: 8px 12px;
position: relative;
}
.nav-links ul li a {
color: white;
text-decoration: none;
display: inline-block;
}
.nav-links ul li::after {
content: "";
width: 0%;
height: 2px;
background: #ff0000;
display: block;
margin: auto;
transition: 0.5s;
}
.nav-links ul li:hover::after {
width: 100%;
}
nav .fa {
display: none;
}
.logo-container a {
display: flex;
align-items: center;
}
.logo-container a span {
color: white;
margin-left: 10px;
font-size: 20px;
font-weight: 600;
border-bottom: 2px solid red;
border-radius: 0 0 10px 10px;
padding-bottom: 10px;
}
.nav-links .login {
width: 100px;
height: 35px;
margin-left: 35px;
background-color: green;
border-radius: 15px;
border: none;
color: white;
/* padding: 10px; */
font-size: 15px;
cursor: pointer;
}
.nav-links .login:hover {
background-color: rgb(39, 202, 39);
font-size: 17px;
}
/* Hamburger */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.hamburger div {
width: 25px;
height: 3px;
background-color: white;
margin: 4px;
transition: 0.4s;
}
.hamburger.open div:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 5px);
}
.hamburger.open div:nth-child(2) {
opacity: 0;
}
.hamburger.open div:nth-child(3) {
transform: rotate(45deg) translate(-5px, -5px);
}
@media (max-width: 950px){
.nav-links ul li a{
font-size: 10px;
/* padding: 5px; */
}
}
@media(max-width: 750px){
.about-values-container {
grid-template-areas: "a1"
"a2"
"a3"
"a4";
}
}
@media (max-width: 768px) {
.nav-links {
position: fixed;
right: 0;
height: 100vh;
top: 0;
background-color: rgb(19, 32, 67);
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
transform: translateX(100%);
transition: transform 0.3s ease-in;
}
.nav-links ul {
flex-direction: column;
margin-top: 0;
}
.nav-links.open {
transform: translateX(0%);
}
.hamburger {
display: flex;
}
}
@media (max-width: 480px) {
nav {
/* flex-direction: column; */
}
.nav-links ul {
flex-direction: column;
align-items: center;
}
.nav-links ul li {
padding: 8px 0;
}
.nav-links .login {
width: 70px;
height: 25px;
font-size: 10px;
}
}
/* Atul Code */
.about-app-main {
margin: auto;
max-width: 1518px;
padding-top: 100px;
}
.about-header {
text-align: center;
padding: 20px 0;
/* margin: -20px 70px 50px 5px; */
}
.about-ourvalues {
font-size: 38px;
color: #555;
margin: 20px 500px 10px 500px;
}
.about-ourvalues-header {
font-size: 60px;
margin: 10px 170px 100px 170px;
}
.about-values-container {
display: grid;
grid-template-areas: "a1 a2"
"a3 a4";
}
.about-header-para {
margin: -50px 100px 10px 5px;
}
.about-top-para {
margin: 0px 200px 150px 5px;
}
/* .value-imgtext-container {
display: grid;
grid-template-areas: "a1 a2"
"a3 a4";
} */
.about-values-container>div:nth-of-type(1) {
grid-area: a1;
}
.about-values-container>div:nth-of-type(2) {
grid-area: a2;
margin-top: 220px;
}
.about-values-container>div:nth-of-type(3) {
grid-area: a3;
margin-top: -20px;
}
.about-values-container>div:nth-of-type(4) {
grid-area: a4;
margin-top: 220px;
}
.about-values-container div {
padding: 5px;
}
.value-imgtext-container img {
max-width: 100%;
height: auto;
}
.text-container-heading {
font-size: 20px;
margin: 20px 0 10px;
text-align: center;
}
.text {
font-size: 25px;
color: #333;
text-align: center;
margin: 20px 80px;
}
/* Footer */
.footer-container-p {
margin: auto;
max-width: 1580px;
}
footer {
background-color: black;
height: auto;
padding: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.pages, .category, .resources {
margin: 10px 0;
}
.common-footer {
color: white;
flex-direction: column;
font-weight: 300;
font-size: 14px;
margin: 10px;
display: flex;
}
.common-footer a {
color: rgb(82, 94, 122);
padding: 5px;
text-decoration: none;
margin-top: 5px;
font-size: 15px;
font-weight: 300;
}
.footer-with-main-logo {
background-color: black;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
flex-wrap: wrap;
}
.footer-border-bottom {
width: 100%;
background-color: rgb(130, 130, 130);
height: 1px;
}
.license-text {
color: rgb(70, 80, 106);
font-size: 15px;
text-align: center;
flex: 1;
margin-top: 10px;
text-align: end;
}
.socials {
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.socials .icons {
display: flex;
color: white;
padding: 20px;
}
.socials .icons i {
padding: 20px;
font-size: 24px;
}
.socials .icons .fa-x-twitter:hover {
color: rgb(45, 45, 73);
}
.socials .icons .fa-instagram:hover {
color: rgb(231, 19, 142);
}
.socials .icons .fa-youtube:hover {
color: rgb(211, 0, 0);
}
.socials .icons .fa-facebook:hover {
color: rgb(0, 0, 238);
}
.socials .icons .fa-github:hover {
color: rgb(94, 94, 94);
}
.info {
color: rgb(82, 94, 122);
text-align: center;
margin-top: 10px;
}
.advertise a {
width: 15em;
max-width: 350px;
height: auto;
background-color: white;
margin-top: 20px;
border-radius: 5px;
display: flex;
align-items: center;
padding: 10px;
text-decoration: none;
justify-content: space-between;
color: black;
text-align: center;
justify-content: space-between;
align-items: center;
}
.advertise a:hover {
transform: scale(1.02);
background-color: wheat;
text-decoration: none;
color: black;
}
.advertise a p{
margin: 0;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
footer {
flex-direction: column;
align-items: center;
}
.common-footer {
margin: 10px 0;
}
.footer-with-main-logo {
flex-direction: column;
align-items: center;
padding: 20px;
}
.license-text {
text-align: center;
margin-top: 10px;
}
.socials {
margin-top: 20px;
}
.advertise a {
width: 100%;
max-width: 300px;
padding: 10px;
}
}
@media (max-width: 480px) {
footer {
padding: 20px;
}
.footer-with-main-logo {
padding: 10px;
}
.license-text {
font-size: 13px;
}
.socials .icons i {
font-size: 20px;
padding: 8px;
}
.advertise a {
width: 100%;
max-width: 250px;
padding: 8px;
}
}
</style>
</head>
<body style="background-color: rgba(214, 189, 152, 1);">
<header class="header" id="header">
<nav>
<div class="logo-container">
<a href="index.html">
<img src="https://st2.depositphotos.com/42546960/42289/v/450/depositphotos_422894620-stock-illustration-letter-logo-design-vector-template.jpg" alt="Logo"/>
<span>Code Collab</span>
</a>
</div>
<div class="nav-links" id="navLinks">
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./about.html">ABOUT</a></li>
<li><a href="./course.html">COURSE</a></li>
<li><a href="./blog.html">BLOG</a></li>
<li><a href="./contact.html">CONTACT US</a></li>
</ul>
<a href="./loginpage.html">
<button class="login">LOGIN</button>
</a>
</div>
<div class="hamburger" id="hamburger">
<div></div>
<div></div>
<div></div>
</div>
</nav>
</header>
<main class="about-app-main">
<section class="about-section-container">
<div class="about-container">
<div class="about-header">
<div class="about-header">
<div class="about-header-para">
<h1 style="text-align: start;font-size: 100px; font-weight: 200;">From Croatian shores to
global frontiers</h1>
<br><br><br>
<div class="about-top-para">
<p
style="text-align: start; font-size: 30px; color: rgb(89, 96, 110); font-weight: 50;">
We’re an agency founded on the belief that
challenging core assumptions unlocks transformative solutions. From our
humble beginnings on Island Krk to a global team spanning multiple nationalities, we
defy expectations, guided by
focus
and determination to do our best work.</p>
<br><br>
<p
style="text-align: start; font-size: 30px; color: rgb(104, 109, 118); font-weight: 50;">
We believe in learning through doing,
embracing the road less traveled, and continually striving to improve. Open
communication and mindful listening guide our approach, ensuring we understand,
adapt, and push forward in
everything we
do.</p>
</div>
</div>
<p class="about-ourvalues">Our Values</p>
<h2 style="color: rgb(19, 75, 112); font-weight: 500;" class="about-ourvalues-header">Through
the years, we have been shaped and formed by both
successes and failures.</h2>
<div class="about-values-container">
<div class="value-imgtext-container">
<img class="imgA" loading="lazy" decoding="async" width="500" height="500"
src="https://bb.agency/wp-content/uploads/2023/10/BB_About_2_1Challenge-Black.gif"
alt="1st">
<h2 style="color: rgb(73, 152, 171); font-size: 40px; font-weight: 150;"
class="text-container-heading">Challenge Core Assumptions</h2>
<p class="text">At the heart of our journey lies this singular idea. We believe that by
bravely
questioning our own and our clients’ assumptions about their brand, website, and
product, we
can uncover new solutions and ideas. While some might assume we could not run a
thriving
digital agency from a Croatian Island, we continue to challenge this particular
assumption
every single day.</p>
</div>
<div class="value-imgtext-container">
<img class="imgA" loading="lazy" decoding="async" width="500" height="500"
src="https://bb.agency/wp-content/uploads/2023/10/BB_About_2_2Learning-Black.gif"
alt="2nd">
<h2 style="color: rgb(73, 152, 171); font-size: 40px;font-weight: 150;"
class="text-container-heading">Learning Through Doing</h2>
<p class="text">We approach every problem with an open mind, and sometimes finding the
best
solutions means taking the road less traveled. Embracing experimentation, venturing
into the
unknown, or even stumbling occasionally is all part of the process. Because every
step, even
the missteps, deepens our understanding and hones our craft. Learning by doing—it’s
how we
grow.</p>
</div>
<div class="value-imgtext-container">
<img class="imgA" loading="lazy" decoding="async" width="500" height="500"
src="https://bb.agency/wp-content/uploads/2023/10/BB_About_2_3Focus-Pure-Black.gif"
alt="3rd">
<h2 style="color: rgb(73, 152, 171); font-size: 40px;font-weight: 150;"
class="text-container-heading">Focus and Determination</h2>
<p class="text">When we say yes to a project, it’s because we truly believe in it. Our
commitment means giving it our all, every time.
If there’s a way to improve, streamline or make something better, we’ll pursue it,
even if it means stepping out of our
comfort zone. For us it’s not about meeting expectations, it’s about our
determination to create something that truly
resonates with people.</p>
</div>
<div class="value-imgtext-container">
<img class="imgA" loading="lazy" decoding="async" width="500" height="500"
src="https://bb.agency/wp-content/uploads/2023/10/BB_About_2_4ListenB-Black.gif"
alt="2nd">
<h2 style="color: rgb(73, 152, 171); font-size: 40px;font-weight: 150;"
class="text-container-heading">Listen Smart</h2>
<p class="text">We take an open-door approach to communication, with both our clients
and each other. Every voice is important, and
we’re never too busy to listen. To us, listening smart goes beyond just hearing
words—it means understanding without
barriers of ego, being mindful to perspectives and insights, and always being open
to change and growth.</p>
</div>
</div>
</div>
</section>
</main>
<div class="footer-container-p">
<footer>
<div class="pages common-footer">
<h3>Pages</h3>
<a href="">About us</a>
<a href="">News</a>
<a href="">Authors</a>
<a href="">Newsletters Plans</a>
<a href="">Contact us</a>
<a href="">Sign up</a>
</div>
<div class="category common-footer">
<h3>Category</h3>
<a href="">Health</a>
<a href="">Politics</a>
<a href="">Sports</a>
<a href="">World News</a>
<a href="">Business</a>
<a href="">Technology</a>
</div>
<div class="resources common-footer">
<h3>Resources</h3>
<a href="">Privacy Policy</a>
<a href="">Advertise</a>
<a href="">Terms & Conditions</a>
<a href="">License</a>
<a href="">Style Guide</a>
</div>
<div class="socials">
<div class="icons">
<i class="fa-brands fa-x-twitter"></i>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-youtube"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-github"></i>
</div>
<div class="info">[email protected]</div>
<div class="advertise">
<a href="./register.html">
<p>Start a Web-Confrence</p>
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
<div class="footer-border-bottom"></div>
<div class="footer-with-main-logo">
<div class="logo-container" >
<a href="index.html"
><img
src="https://st2.depositphotos.com/42546960/42289/v/450/depositphotos_422894620-stock-illustration-letter-logo-design-vector-template.jpg"
alt="Logo"
width="70px"
height="70px"
style="border-radius: 50px;"
/>
<span>Code Collab</span></a
>
</div>
<div class="license-text">
© 2024 Code-Collab. Designed by freedom-developers-005. Powered by Masai.
</div>
</div>
</div>
</div>
<script>
document.addEventListener("scroll", function () {
const header = document.getElementById("header");
if (window.scrollY > 10) {
header.style.backgroundColor = "black";
header.style.opacity = "0.3";
} else {
header.style.backgroundColor = " rgb(19, 32, 67)";
header.style.opacity = "1";
}
});
</script>
<script>
const hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('navLinks');
hamburger.addEventListener('click', () => {
hamburger.classList.toggle('open');
navLinks.classList.toggle('open');
});
</script>
<script
src="https://kit.fontawesome.com/52cf30c454.js"
crossorigin="anonymous"
></script>
<script src="https://cdn.tailwindcss.com"></script>
<script src="script.js"></script>
<script src="https://kit.fontawesome.com/52cf30c454.js" crossorigin="anonymous"></script>
</body>
</html>