-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
63 lines (58 loc) Β· 2.07 KB
/
about.php
File metadata and controls
63 lines (58 loc) Β· 2.07 KB
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
<!-- start header -->
<?php
$pageTitle = "About";
include "./components/header.php";
?>
<!-- end header -->
<!-- experience section -->
</div>
<section class="experience_section layout_padding-top layout_padding2-bottom">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="img-box">
<img src="./static/images/experience-img.jpg" alt="">
</div>
</div>
<div class="col-md-7">
<div class="detail-box">
<div class="heading_container">
<h2>
Smooth Onboarding Experience
</h2>
</div>
<p>
Our platform ensures a seamless onboarding process, allowing users to quickly get started with our features and tools. With a user-friendly interface and intuitive design, new users can easily navigate and find what they need. This results in a higher engagement rate and a better overall experience.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- end experience section -->
<!-- about section -->
<section class="about_section layout_padding-bottom">
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-9 mx-auto">
<div class="img-box">
<img src="./static/images/about-img.jpg" alt="">
</div>
</div>
</div>
<div class="detail-box">
<h2>
About <b>CODE</b><code><small>Byte</small></code> Company
</h2>
<p>
Codebyte is a community-driven forum for developers, programmers, and tech enthusiasts. Our mission is to provide a platform for connection, collaboration, and innovation. Founded in [Year], we're proud to have a thriving community of [Number] members worldwide. We believe in collaboration, innovation, and community. Our team is dedicated to ensuring Codebyte remains a valuable resource for our members.
</p>
</div>
</div>
</section>
<!-- end about section -->
<!-- start footer -->
<?php
include "./components/footer.php";
?>
<!-- end footer -->