OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/28/2024 11:03:35 AM
rwxrwxr-x
📄
about.php
2.06 KB
08/21/2024 10:01:12 AM
rw-r--r--
📁
assets
-
08/21/2024 10:01:17 AM
rwxr-xr-x
📄
blog.php
5.35 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
chatbot.html
1.86 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
chatbot.php
1.3 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
dashboard.php
788 bytes
08/21/2024 10:01:12 AM
rw-r--r--
📄
db.php
378 bytes
08/21/2024 10:01:12 AM
rw-r--r--
📄
footer.html
4.3 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
forgot-password-handler.php
7.12 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
forgot-password.php
4.52 KB
08/21/2024 10:01:13 AM
rw-r--r--
📁
includes
-
08/21/2024 10:01:14 AM
rwxr-xr-x
📄
index.php
12.59 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
login-handler.php
3.7 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
login.php
4.72 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
navbar.php
1.14 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
refundPolicy.php
5.99 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
reset-password-handler.php
4.01 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
reset-password.php
2.95 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
service.php
4.29 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
signup-handler.php
1.04 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
signup.php
5.98 KB
08/21/2024 10:01:14 AM
rw-r--r--
📄
usagePolicy.php
15.21 KB
08/21/2024 10:01:14 AM
rw-r--r--
📁
vendor
-
08/21/2024 10:01:26 AM
rwxr-xr-x
Editing: service.php
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Our Services | Knobly Cream</title> <link rel="stylesheet" href="assets/css/style.css"> <style> /* General styles */ body { font-family: Arial, sans-serif; color: #333; line-height: 1.6; margin: 0; padding: 0; } .header { background: #f8f9fa; padding: 10px 0; } .navbar { display: flex; justify-content: space-between; align-items: center; } .navbar-brand { font-size: 1.5rem; color: #007bff; text-decoration: none; } .navbar-nav { list-style: none; display: flex; gap: 15px; } .nav-item .nav-link { text-decoration: none; color: #333; } .nav-item .nav-link:hover { color: #007bff; } .container { max-width: 1200px; margin: auto; padding: 0 15px; } .txtHead { font-size: 2rem; color: #007bff; text-align: center; } .footerHome { background: #f8f9fa; padding: 10px 0; text-align: center; } .footerHome .container { display: flex; justify-content: space-between; align-items: center; } .footerHome .text-center { color: #333; } .footerHome a { color: #007bff; text-decoration: none; } .footerHome a:hover { text-decoration: underline; } h2 { font-size: 1.75rem; margin-top: 20px; } h3 { font-size: 1.5rem; margin-top: 15px; } ul { list-style: disc; margin-left: 20px; } ul li { margin-bottom: 10px; } p { margin: 10px 0; } </style> </head> <body> <?php include 'navbar.php'; ?> <div class="container mb-5"> <div class="txtHead mt-5 mb-3">Our Services</div> <div class="row"> <div class="col"> <h2>What We Offer</h2> <p>At Knobly Cream, we are committed to delivering top-notch services to meet your needs. Our range of services is designed to help you achieve your goals efficiently and effectively.</p> <h3>1. Digital Marketing Solutions</h3> <p>Our digital marketing services are tailored to enhance your online presence and drive traffic to your business. We offer:</p> <ul> <li>SEO Optimization</li> <li>Content Marketing</li> <li>Social Media Management</li> <li>Pay-Per-Click Advertising</li> </ul> <h3>2. Web Development</h3> <p>We create custom websites that are not only visually appealing but also functional and user-friendly. Our services include:</p> <ul> <li>Responsive Web Design</li> <li>E-commerce Development</li> <li>Website Maintenance</li> <li>Custom Web Applications</li> </ul> <h3>3. Graphic Design</h3> <p>Our graphic design services help you create a strong visual identity for your brand. We specialize in:</p> <ul> <li>Logo Design</li> <li>Brochures and Flyers</li> <li>Social Media Graphics</li> <li>Print and Digital Media Design</li> </ul> <h3>4. Content Creation</h3> <p>Engage your audience with high-quality content. Our content creation services include:</p> <ul> <li>Blog Writing</li> <li>Article Writing</li> <li>Video Content Production</li> <li>Copywriting</li> </ul> <h3>5. Consulting Services</h3> <p>Our expert consultants provide strategic advice to help you make informed decisions. We offer:</p> <ul> <li>Business Strategy Consulting</li> <li>Market Research</li> <li>Brand Strategy</li> <li>Operational Improvement</li> </ul> </div> </div> </div> <?php include 'footer.html'; ?> </body> </html>