File Manager
Editing: blogpost.php
<!DOCTYPE html> <html lang="en"> <head> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-Z6RR2PMZW4"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-Z6RR2PMZW4'); </script> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>eizon Blogposts</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"> <link rel="stylesheet" href="e-commerce.css"> <link rel="manifest" href="/manifest.json"> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f7f7f7; color: #333; } .container { max-width: 1200px; margin: 20px auto; padding: 20px; background: #fff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } h2 { color: #2c3e50; } .blog { width:90%; margin:auto; margin-bottom: 40px; } .blog img { max-width: 90%; margin: auto; border-radius: 8px; margin-bottom: 15px; background-position: center; } .cta-button { display: inline-block; padding: 10px 20px; margin-top: 20px; background-color: #e74c3c; color: #fff; text-decoration: none; font-weight: bold; border-radius: 4px; transition: background 0.3s; } .cta-button:hover { background-color: #c0392b; } </style> </head> <body> <nav> <div class="topro"> <div class="title">e!zon</div> <input type="text" id="search" placeholder="Search anything..." onkeyup="liveSearch()"> <div class="nav"> <span class="open-btn" onclick="openNav()">☰</span> </div> </div> <div id="myNav" class="overlay"> <a href="javascript:void(0)" class="close-btn" onclick="closeNav()">×</a> <div class="overlay-content"> <a href="index.php">Home</a> <div class="categs"> <h4>Categories</h4> <a href="allproducts.php?">All Categories</a> <a href="allproducts.php?category=Electronics">Electronics</a> <a href="allproducts.php?category=Fashion and Beauty">Fashion & Beauty</a> <a href="allproducts.php?category=Home Accessories">Home Accessories</a> <a href="allproducts.php?category=Decorations">Decorations</a> <a href="allproducts.php?category=Food and Nutrition">Food & Nutrition</a> <a href="allproducts.php?category=Services">Services</a> <a href="allproducts.php?category=transport">transport</a> <a href="allproducts.php?category=Other">Other</a> </div> <a href="addproduct.php" >Sell on eizon</a> <a href="add_request.php">Request a product</a> <a href="requests_page.php">See product requests</a> <a href="#">About Us</a> <button style="background-color: orange;border: none;border-radius: 5px;padding: 9px 4px;"> <a href="addproduct.php">SELL ON EIZON NOW !</a> </button> </div> </div> <div id="result" class="search-result"></div> </nav> <div class="container"> <h1>Welcome to eizon Blog</h1> <p>Explore our latest tips, insights, and advice for making the most out of your online selling experience.</p> <div class="blog"> <h2>1. "5 Proven Tips to Boost Sales on eizon"</h2> <img src="/images/commerce.jpg" alt="Boost Sales"> <p>Discover actionable tips to increase your product visibility and drive more sales. From crafting compelling product descriptions to leveraging user-generated content, this blog will empower you to become a successful online seller.</p> <a href="blog1.php" class="cta-button">Read More</a> </div> <div class="blog"> <h2>2. "How to Take Stunning Product Photos on a Budget"</h2> <img src="/images/E-commerce.jpg" alt="Product Photography"> <p>Professional product photos can make or break your online sales. In this guide, learn how to use simple tools and techniques to capture eye-catching images that highlight the best features of your products without overspending.</p> <a href="add-cool-product-photos.php" class="cta-button">Read More</a> </div> <div class="blog"> <h2>3. "Understanding Buyer Behavior in East Africa"</h2> <img src="/images/commerce.jpg" alt="Buyer Behavior"> <p>Gain insights into the preferences and purchasing habits of buyers in the East African region. This blog covers key trends, popular product categories, and the best ways to tailor your listings for maximum appeal.</p> <a href="blog-buyer-behavior.php" class="cta-button">Read More</a> </div> </div> <?php include 'footer.php'; ?> <script> function openNav() { document.getElementById("myNav").style.width = "250px"; } function closeNav() { document.getElementById("myNav").style.width = "0"; } // Close the navigation menu when clicking outside of it document.addEventListener("click", function (event) { const nav = document.getElementById("myNav"); const openButton = document.querySelector(".open-btn"); // Assuming you have a button to open the nav // Check if the click is outside the nav and not on the open button if (!nav.contains(event.target) && !openButton.contains(event.target)) { closeNav(); } }); </script> <script src="e-commerce.js"></script> </body> </html>
💾 Save
⬅ Back