-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.php
168 lines (154 loc) · 8.27 KB
/
project.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
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
<?php include("header.php"); ?>
<!-- Navbar End -->
<!-- Page Header Start -->
<div class="container-fluid page-header py-5">
<div class="container text-center py-5">
<h1 class="display-2 text-white mb-4 animated slideInDown">Projects</h1>
<nav aria-label="breadcrumb animated slideInDown">
<ol class="breadcrumb justify-content-center mb-0">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Pages</a></li>
<li class="breadcrumb-item" aria-current="page">Projects</li>
</ol>
</nav>
</div>
</div>
<!-- Page Header End -->
<!-- Fact Start -->
<div class="container-fluid bg-secondary py-5">
<div class="container">
<div class="row">
<div class="col-lg-3 wow fadeIn" data-wow-delay=".1s">
<div class="d-flex counter">
<h1 class="me-3 text-primary counter-value">99</h1>
<h5 class="text-white mt-1">Success in getting happy customer</h5>
</div>
</div>
<div class="col-lg-3 wow fadeIn" data-wow-delay=".3s">
<div class="d-flex counter">
<h1 class="me-3 text-primary counter-value">25</h1>
<h5 class="text-white mt-1">Thousands of successful business</h5>
</div>
</div>
<div class="col-lg-3 wow fadeIn" data-wow-delay=".5s">
<div class="d-flex counter">
<h1 class="me-3 text-primary counter-value">120</h1>
<h5 class="text-white mt-1">Total clients who love HighTech</h5>
</div>
</div>
<div class="col-lg-3 wow fadeIn" data-wow-delay=".7s">
<div class="d-flex counter">
<h1 class="me-3 text-primary counter-value">5</h1>
<h5 class="text-white mt-1">Stars reviews given by satisfied clients</h5>
</div>
</div>
</div>
</div>
</div>
<!-- Fact End -->
<!-- Project Start -->
<div class="container-fluid project py-5 my-5">
<div class="container py-5">
<div class="text-center mx-auto pb-5 wow fadeIn" data-wow-delay=".3s" style="max-width: 600px;">
<h5 class="text-primary">Our Project</h5>
<h1>Our Recently Completed Projects</h1>
</div>
<div class="row g-5">
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".3s">
<div class="project-item">
<div class="project-img">
<img src="img/project-1.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Web design</h4>
<p class="m-0 text-white">Web Analysis</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="project-item">
<div class="project-img">
<img src="img/project-2.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Cyber Security</h4>
<p class="m-0 text-white">Cyber Security Core</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".7s">
<div class="project-item">
<div class="project-img">
<img src="img/project-3.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Mobile Info</h4>
<p class="m-0 text-white">Upcomming Phone</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".3s">
<div class="project-item">
<div class="project-img">
<img src="img/project-4.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Web Development</h4>
<p class="m-0 text-white">Web Analysis</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="project-item">
<div class="project-img">
<img src="img/project-5.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Digital Marketing</h4>
<p class="m-0 text-white">Marketing Analysis</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".7s">
<div class="project-item">
<div class="project-img">
<img src="img/project-6.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">keyword Research</h4>
<p class="m-0 text-white">keyword Analysis</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project End -->
<!-- Footer Start -->
<?php include("footer.php"); ?>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-secondary btn-square rounded-circle back-to-top"><i class="fa fa-arrow-up text-white"></i></a>
<!-- JavaScript Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>