BossBey File Manager
PHP:
8.1.34
OS:
Linux
User:
ebookghostwritin
Root
/
home
/
demodesignproboa
/
public_html
/
display
/
includes
/
components
π€ Upload
π New File
π New Folder
Close
Editing: services.php
<section class="services_wrapper"> <div class="container"> <div class="head"> <h3>Everything You Need to Launch β Done for You</h3> <p>We donβt just build websites β we give you everything you need to launch, grow, and stay ahead online</p> </div> <div class="row"> <?php $ServiceCard = json_decode(file_get_contents('assets/json/services.json'), true); foreach ($ServiceCard as $Card) { ?> <div class="col-12 col-sm-6 col-lg-4 col-md-4 col-xl-4 col-xxl-4"> <div class="services_box"> <img src="<?php echo htmlspecialchars($Card['image']); ?>" alt="<?php echo htmlspecialchars($Card['image']); ?>"> <h3><?php echo htmlspecialchars($Card['heading']); ?></h3> <p><?php echo htmlspecialchars($Card['description']); ?></p> </div> </div> <?php } ?> </div> </div> </section>
Save
Cancel