OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
knoblyExpressLandingPage
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
π
..
-
05/09/2025 11:18:49 AM
rwxr-xr-x
π
about.php
2.06 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
assets
-
08/20/2024 11:17:08 AM
rwxr-xr-x
π
blog.php
5.35 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
cream
-
09/23/2024 04:31:51 AM
rwxr-xr-x
π
dashboard.php
788 bytes
08/20/2024 11:17:08 AM
rw-r--r--
π
db.php
378 bytes
08/20/2024 11:17:08 AM
rw-r--r--
π
footer.html
3.76 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
forgot-password-handler.php
2.13 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
forgot-password.php
4.52 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
includes
-
08/20/2024 11:17:08 AM
rwxr-xr-x
π
index.php
5.94 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
login-handler.php
869 bytes
08/20/2024 11:17:08 AM
rw-r--r--
π
login.php
4.72 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
navbar.php
830 bytes
08/20/2024 11:17:08 AM
rw-r--r--
π
refundPolicy.php
5.99 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
reset-password-handler.php
910 bytes
08/20/2024 11:38:06 AM
rw-r--r--
π
reset-password.php
2.95 KB
08/21/2024 05:04:57 AM
rw-r--r--
π
service.php
4.29 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
signup-handler.php
1.04 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
signup.php
5.98 KB
08/20/2024 11:17:08 AM
rw-r--r--
π
usagePolicy.php
15.21 KB
08/20/2024 11:17:08 AM
rw-r--r--
Editing: about.php
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>About Us - Knobly Cream</title> <link rel="stylesheet" href="assets/css/style.css"> <style> /* About Section Styling */ #about { background: #f9f9f9; /* Light background for readability */ padding: 60px 20px; color: #333; /* Dark text color for contrast */ } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .section-title { font-size: 2rem; font-weight: bold; color: #1db954; /* Accent color for emphasis */ margin-bottom: 20px; text-align: center; } .about-content { text-align: center; max-width: 800px; margin: 0 auto; } .about-content p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; } .about-content p:last-of-type { margin-bottom: 0; } /* Responsive Styles */ @media (max-width: 768px) { .section-title { font-size: 1.5rem; } .about-content p { font-size: 1rem; } } </style> </head> <body> <?php include 'navbar.php'; ?> <section id="about"> <div class="container"> <h4 class="section-title">Empowering Brands Through Content</h4> <div class="about-content"> <p>At Knobly Cream, we believe in the transformative power of content for brand building. Our mission is to assist individuals and organizations in curating, creating, reaching, and measuring their content marketing efforts. Weβre committed to simplifying the content creation process, fostering collaboration, and enhancing brand reputation.</p> <p>Whether youβre a solopreneur, managing a small business, or leading a large team, Knobly Cream is designed for you. Our platform enables you to take a confident leap into content marketing and achieve outstanding results.</p> </div> </div> </section> <?php include 'footer.html'; ?> </body> </html>