-
Notifications
You must be signed in to change notification settings - Fork 26
/
about-us.php
50 lines (23 loc) · 1.44 KB
/
about-us.php
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
<?php include('shared/_header.php');?>
<body>
<main>
<div class="big-wrapper light">
<img src="./images/shape.png" alt="" class="shape" />
<?php include('shared/_navbar.php'); ?>
<div class="container mt-5">
<div class="card border-0 shadow about-card">
<div class="card-body mt-5 mb-2 mx-3 ">
<h3 class="card-title">
<span class="text-primary icon-hover"><i class="fa-solid fa-paperclip"></i></span>
About us</h3>
<p class="card-text fs-5 text-justify">
Embark on your coding journey with courage and curiosity. Every line of code you write is a step toward creating something extraordinary. Embrace the challenges, for they will become the milestones of your progress. Remember, every expert was once a beginner. Keep learning, stay persistent, and let your passion guide you. Your potential is limitless.
</div>
<div class="mb-4" style="width: 100%; display: flex; align-items: center; justify-content: center;">
<img style="width: 400px;" src="./images/company-logo.png" class="card-img-bottom" alt="...">
</div>
</div>
</div>
</div>
</main>
<?php include('shared/_footer.php'); ?>