{"id":1541,"date":"2024-12-15T17:22:09","date_gmt":"2024-12-15T11:52:09","guid":{"rendered":"http:\/\/localhost:10038\/?page_id=1541"},"modified":"2024-12-15T21:03:49","modified_gmt":"2024-12-15T15:33:49","slug":"website-analyzer","status":"publish","type":"page","link":"https:\/\/epiction.co\/softworks\/website-analyzer\/","title":{"rendered":"Free Website Performance Analyzer"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1541\" class=\"elementor elementor-1541\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c52534 e-flex e-con-boxed e-con e-parent\" data-id=\"4c52534\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b8b5fd elementor-widget elementor-widget-shortcode\" data-id=\"6b8b5fd\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-shortcode\">                <div class=\"analyzer-tool\" style=\"text-align: center; margin: 50px auto; max-width: 700px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\">\n                <p style=\"font-size: 18px; color: #555; margin-bottom: 30px;\">Analyze any website's performance and speed to improve your user experience.<\/p>\n                \n                <form id=\"websiteAnalyzerForm\" style=\"margin-bottom: 30px;\">\n                <input\n                type=\"text\"\n                id=\"urlInput\"\n                placeholder=\"Enter website URL\"\n                style=\"width: 80%; padding: 12px 20px; font-size: 18px; border: 2px solid #ddd; border-radius: 8px; box-sizing: border-box; transition: all 0.3s ease-in-out;\"\n                required\n                \/>\n                <button\n                type=\"submit\"\n                style=\"padding: 12px 25px; background-color: #0073aa; color: white; font-size: 16px; border: none; border-radius: 8px; cursor: pointer; margin-top: 15px; transition: background-color 0.3s ease-in-out;\"\n                onmouseover=\"this.style.backgroundColor='#005f87'\"\n                onmouseout=\"this.style.backgroundColor='#0073aa'\"\n                >Analyze<\/button>\n                <\/form>\n                \n                <div id=\"loading\" style=\"display: none; margin-bottom: 20px; text-align: center;\">\n                <div style=\"width: 100%; height: 10px; background-color: #ddd; border-radius: 5px; overflow: hidden;\">\n                <div id=\"loading-bar\" style=\"width: 0; height: 100%; background-color: #0073aa;\"><\/div>\n                <\/div>\n                <p style=\"font-size: 18px; color: #0073aa; margin-top: 10px;\">Analyzing...<\/p>\n                <\/div>\n                \n                <div id=\"results\" style=\"background-color: #fff; padding: 30px; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin-top: 30px;\">\n                <!-- Results will appear here -->\n                <\/div>\n                <\/div>\n                \n                <script>\n                document.getElementById(\"websiteAnalyzerForm\").addEventListener(\"submit\", function(event) {\n                                                                                event.preventDefault();\n                                                                                \n                                                                                const apiKey = \"AIzaSyDworV8c86DUxVW2rWspuwdin10BkXwgQY\"; \/\/ Replace this with your Google API key\n                                                                                const apiUrl = \"https:\/\/www.googleapis.com\/pagespeedonline\/v5\/runPagespeed\";\n                                                                                let url = document.getElementById(\"urlInput\").value;\n                                                                                \n                                                                                \/\/ Ensure the URL includes the scheme\n                                                                                if (!url.startsWith('http:\/\/') && !url.startsWith('https:\/\/')) {\n                                                                                url = 'https:\/\/' + url;\n                                                                                }\n                                                                                \n                                                                                const fullUrlMobile = `${apiUrl}?url=${encodeURIComponent(url)}&key=${apiKey}&strategy=mobile`;\n                                                                                const fullUrlDesktop = `${apiUrl}?url=${encodeURIComponent(url)}&key=${apiKey}&strategy=desktop`;\n                                                                                \n                                                                                \/\/ Reset results div and show loading bar\n                                                                                const resultsDiv = document.getElementById(\"results\");\n                                                                                resultsDiv.innerHTML = \"\";\n                                                                                const loadingDiv = document.getElementById(\"loading\");\n                                                                                loadingDiv.style.display = \"block\";\n                                                                                const loadingBar = document.getElementById(\"loading-bar\");\n                                                                                loadingBar.style.width = \"0%\";\n                                                                                \n                                                                                let loadingProgress = 0;\n                                                                                const loadingInterval = setInterval(() => {\n                                                                                                                    loadingProgress += 10;\n                                                                                                                    if (loadingProgress > 100) loadingProgress = 100;\n                                                                                                                    loadingBar.style.width = `${loadingProgress}%`;\n                                                                                                                    }, 500);\n                                                                                \n                                                                                Promise.all([\n                                                                                            fetch(fullUrlMobile).then(response => response.json()),\n                                                                                            fetch(fullUrlDesktop).then(response => response.json())\n                                                                                            ])\n                                                                                .then(([mobileData, desktopData]) => {\n                                                                                      clearInterval(loadingInterval);\n                                                                                      loadingDiv.style.display = \"none\";\n                                                                                      \n                                                                                      if (mobileData.error || desktopData.error) {\n                                                                                      resultsDiv.innerHTML = `<p style=\"color: red;\">Error: ${mobileData.error?.message || desktopData.error?.message}<\/p>`;\n                                                                                      } else {\n                                                                                      const renderData = (data, strategy) => {\n                                                                                      const performanceScore = data.lighthouseResult.categories.performance?.score * 100 || 'N\/A';\n                                                                                      const fcp = data.lighthouseResult.audits['first-contentful-paint']?.displayValue || 'N\/A';\n                                                                                      const lcp = data.lighthouseResult.audits['largest-contentful-paint']?.displayValue || 'N\/A';\n                                                                                      const tti = data.lighthouseResult.audits['interactive']?.displayValue || 'N\/A';\n                                                                                      const tbt = data.lighthouseResult.audits['total-blocking-time']?.displayValue || 'N\/A';\n                                                                                      const cls = data.lighthouseResult.audits['cumulative-layout-shift']?.displayValue || 'N\/A';\n                                                                                      const screenshot = data.lighthouseResult.audits['final-screenshot']?.details?.data;\n                                                                                      \n                                                                                      return `\n                                                                                      <div style=\"margin-bottom: 25px; padding: 20px; background-color: #f7f7f7; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1);\">\n                                                                                      <h3 style=\"color: #0073aa; font-size: 24px;\">${strategy} Results<\/h3>\n                                                                                      <img decoding=\"async\" src=\"${screenshot}\" alt=\"Screenshot of ${data.id} (${strategy})\" style=\"width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px;\" \/>\n                                                                                      <div style=\"display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;\">\n                                                                                      <strong>Performance Score:<\/strong>\n                                                                                      <div style=\"width: 60px; height: 60px; border-radius: 50%; background-color: #ddd; display: flex; align-items: center; justify-content: center; color: ${performanceScore >= 90 ? 'green' : (performanceScore >= 50 ? 'orange' : 'red')}; font-weight: bold;\">\n                                                                                      ${performanceScore}\n                                                                                      <\/div>\n                                                                                      <\/div>\n                                                                                      <p><strong>First Contentful Paint:<\/strong> ${fcp}<\/p>\n                                                                                      <p><strong>Largest Contentful Paint:<\/strong> ${lcp}<\/p>\n                                                                                      <p><strong>Time to Interactive:<\/strong> ${tti}<\/p>\n                                                                                      <p><strong>Total Blocking Time:<\/strong> ${tbt}<\/p>\n                                                                                      <p><strong>Cumulative Layout Shift:<\/strong> ${cls}<\/p>\n                                                                                      <\/div>\n                                                                                      `;\n                                                                                      };\n                                                                                      \n                                                                                      resultsDiv.innerHTML = `\n                                                                                      ${renderData(mobileData, \"Mobile\")}\n                                                                                      ${renderData(desktopData, \"Desktop\")}\n                                                                                      `;\n                                                                                      }\n                                                                                      })\n                                                                                .catch(error => {\n                                                                                       clearInterval(loadingInterval);\n                                                                                       loadingDiv.style.display = \"none\";\n                                                                                       resultsDiv.innerHTML = `<p style=\"color: red;\">An error occurred: ${error.message}<\/p>`;\n                                                                                       });\n                                                                                });\n                <\/script>\n                <\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-955a013 e-flex e-con-boxed e-con e-parent\" data-id=\"955a013\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-504629e elementor-widget elementor-widget-spacer\" data-id=\"504629e\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-075e3a1 elementor-widget elementor-widget-digtek-heading-title-widget\" data-id=\"075e3a1\" data-element_type=\"widget\" data-widget_type=\"digtek-heading-title-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\r\n\t\r\n\r\n<div class=\"section-title-area\">\r\n\t<div class=\"section-title\">\r\n\t\t\t\t<div class=\"sub-title wow fadeInUp\">\r\n\t\t\t<span>How to improve?<\/span>\r\n\t\t<\/div>\r\n\t\t\t\t\t\t<h2 class=\"wow fadeInUp\" data-wow-delay=\".3s\">\r\n\t\t\tKey Factors for Improving Website Performance\t\t<\/h2>\r\n\t\t\t<\/div>\r\n\t<\/div>\r\n\r\n\t\r\n\r\n             \r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ff9881c elementor-widget elementor-widget-text-editor\" data-id=\"ff9881c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>After analyzing your website&#8217;s speed, consider these key tips to optimize performance:<\/p><ol><li><p><strong>Optimize Images and Media<\/strong><\/p><ul><li>Large images and videos can significantly slow down your website. Use image optimization techniques to reduce file sizes without losing quality. Consider tools like WebP format or automated solutions like <em>lazy loading<\/em>.<\/li><\/ul><\/li><li><p><strong>Leverage Caching<\/strong><\/p><ul><li>Implement browser caching to speed up website load times by saving the visitors&#8217; browser preferences and data. Use services like Cloudflare or other content delivery networks (CDNs) to keep your assets cached at edge servers across the globe.<\/li><\/ul><\/li><li><p><strong>Use a Content Delivery Network (CDN)<\/strong><\/p><ul><li>A CDN distributes your website&#8217;s assets (images, scripts, etc.) across multiple global servers, making your website load faster for users, regardless of their geographical location.<\/li><\/ul><\/li><li><p><strong>Minify JavaScript, CSS, and HTML<\/strong><\/p><ul><li>Reducing the size of these files minimizes loading times. Tools like UglifyJS (for JavaScript) or CSS Minify can help you streamline your code by removing unnecessary spaces and characters.<\/li><\/ul><\/li><li><p><strong>Enable Gzip Compression<\/strong><\/p><ul><li>Gzip compression helps reduce the size of your website files (e.g., CSS, HTML, JavaScript) before they are sent from the server to the browser, improving loading time.<\/li><\/ul><\/li><li><p><strong>Reduce Server Response Time<\/strong><\/p><ul><li>A slow server response can impact your page&#8217;s loading time. Switch to a faster hosting provider or invest in better server infrastructure if your site is handling high traffic.<\/li><\/ul><\/li><li><p><strong>Prioritize Above-the-Fold Content<\/strong><\/p><ul><li>Load critical content visible without scrolling (above the fold) first, which allows your visitors to access information quickly, while other content loads in the background.<\/li><\/ul><\/li><\/ol><h3>\u00a0<\/h3>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1623af3 e-grid e-con-full e-con e-child\" data-id=\"1623af3\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-86aeaaa elementor-widget elementor-widget-image\" data-id=\"86aeaaa\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"740\" height=\"410\" src=\"https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/Screenshot_15-12-2024_21117_localhost-1024x568.jpeg\" class=\"attachment-large size-large wp-image-1647\" alt=\"\" srcset=\"https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/Screenshot_15-12-2024_21117_localhost-1024x568.jpeg 1024w, https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/Screenshot_15-12-2024_21117_localhost-300x166.jpeg 300w, https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/Screenshot_15-12-2024_21117_localhost-768x426.jpeg 768w, https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/Screenshot_15-12-2024_21117_localhost-1536x852.jpeg 1536w, https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/Screenshot_15-12-2024_21117_localhost-2048x1135.jpeg 2048w\" sizes=\"(max-width: 740px) 100vw, 740px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-15cf5f8 elementor-widget elementor-widget-digtek-heading-title-widget\" data-id=\"15cf5f8\" data-element_type=\"widget\" data-widget_type=\"digtek-heading-title-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\r\n\t\r\n\r\n<div class=\"section-title-area\">\r\n\t<div class=\"section-title\">\r\n\t\t\t\t<div class=\"sub-title wow fadeInUp\">\r\n\t\t\t<span>Free Tool<\/span>\r\n\t\t<\/div>\r\n\t\t\t\t\t\t<h2 class=\"wow fadeInUp\" data-wow-delay=\".3s\">\r\n\t\t\tOnline Image Compression Tool\t\t<\/h2>\r\n\t\t\t<\/div>\r\n\t\t<p class=\"wow fadeInUp\" data-wow-delay=\".5s\">\r\n\t\tEffortlessly compress images without losing quality. \t<\/p>\r\n\t<\/div>\r\n\r\n\t\r\n\r\n             \r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dd28aff elementor-widget elementor-widget-digtek-theme-button-widget\" data-id=\"dd28aff\" data-element_type=\"widget\" data-widget_type=\"digtek-theme-button-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\r\n\t\r\n\r\n    <div class=\"main-button wow fadeInUp\" data-wow-delay=\".5s\">\r\n\t\t<a href=\"https:\/\/epiction.co\/softworks\/free-online-imager-compression\/\"> <span class=\"theme-btn\"> Try for free <\/span><span class=\"arrow-btn\"><i class=\"fa-regular fa-arrow-up-right\"><\/i><\/span><\/a>\r\n\t<\/div>\r\n\r\n\t\r\n\r\n             \r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a492995 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"a492995\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2159fec elementor-widget-mobile__width-initial elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-digtek-image-cta-widget\" data-id=\"2159fec\" data-element_type=\"widget\" data-widget_type=\"digtek-image-cta-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\r\n\t<section class=\"cta-counter-section fix section-padding pt-0\">\r\n\t\t<div class=\"bg-shape\">\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"container\">\r\n\t\t\t<div class=\"cta-counter-wrapper bg-cover\" style=\"background-image: url('https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/Tosca-White-Memphis-Vector-Business-Agency-Video-2.gif');\">\r\n\t\t\t\t<div class=\"shape-img\">\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t<div class=\"counter-box-area\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"counter-text wow fadeInUp\" data-wow-delay=\".3s\">\r\n\t\t\t\t\t\t<h2>\r\n\t\t\t\t\t\t\tGet professional help for your business\t\t\t\t\t\t<\/h2>\r\n\t\t\t\t\t\t<p>\n\n\u2705 Web development \u2705 Ecommerce \u2705 Optimization + many more<\/p>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/epiction.co\/softworks\/services\/\" class=\"circle-button\">\r\n\t\t\t\t\t\t<i class=\"fa-regular fa-arrow-up-right\"><\/i>\r\n\t\t\t\t\t\t<span class=\"text-circle\">\r\n\t\t\t\t\t\t   \r\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/11\/text-circlw.png\" alt=\"\"\/>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t<\/a>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t<\/section>\r\n\r\n\t\r\n\r\n             \r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7a51b03 elementor-hidden-desktop elementor-widget elementor-widget-digtek-marketing-cta-widget\" data-id=\"7a51b03\" data-element_type=\"widget\" data-widget_type=\"digtek-marketing-cta-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\r\n\r\n\t<section class=\"cta-contact-section fix\">\r\n\t\t<div class=\"container\">\r\n\t\t\t<div class=\"cta-contact-wrapper bg-cover\" style=\"background-image: url('https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/11\/cta-counter-bg.jpg');\">\r\n\t\t\t\t<div class=\"cta-image wow img-custom-anim-left\" data-wow-duration=\"1.5s\" data-wow-delay=\"0.3s\">\r\n\t\t\t\t   \r\n\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/11\/hero-bg-2.png\" alt=\"\"\/>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t<div class=\"section-title mb-0\">\r\n\t\t\t\t\t<div class=\"sub-title bg-color-3 wow fadeInUp\">\r\n\t\t\t\t\t\t<span>Improve your online presense<\/span>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<h2 class=\"text-white wow fadeInUp\" data-wow-delay=\".3s\">\r\n\t\t\t\t\t\tGet professional IT services for your business\t\t\t\t\t<\/h2>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t<div class=\"main-button wow fadeInUp\" data-wow-delay=\".5s\">\r\n\t\t\t\t\t<a href=\"https:\/\/epiction.co\/softworks\/contact\/\"> <span class=\"theme-btn\">Discuss your project <\/span><span class=\"arrow-btn\"><i class=\"fa-regular fa-arrow-up-right\"><\/i><\/span><\/a>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t<\/section>\r\n\r\n\t\r\n\r\n             \r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8064186 e-flex e-con-boxed e-con e-parent\" data-id=\"8064186\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f94896c elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"f94896c\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"460\" height=\"1006\" src=\"https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/11\/left-shape-3.png\" class=\"attachment-large size-large wp-image-142\" alt=\"\" srcset=\"https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/11\/left-shape-3.png 460w, https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/11\/left-shape-3-137x300.png 137w\" sizes=\"(max-width: 460px) 100vw, 460px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cdb6996 text-center elementor-widget elementor-widget-digtek-heading-title-widget\" data-id=\"cdb6996\" data-element_type=\"widget\" data-widget_type=\"digtek-heading-title-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\r\n\t\r\n\r\n\t<div class=\"section-title\">\r\n\t\t\t\t<div class=\"sub-title bg-color-2 wow fadeInUp\">\r\n\t\t\t<span>BLOG & NEWS<\/span>\r\n\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\r\n\t\r\n\r\n             \r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ac0a753 elementor-widget elementor-widget-digtek-blog-post-widget\" data-id=\"ac0a753\" data-element_type=\"widget\" data-widget_type=\"digtek-blog-post-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t        \r\n        \r\n        <div class=\"row\">\r\n             \r\n            <div class=\"col-lg-3 col-md-6\">\r\n                <div class=\"news-box-items\">\r\n                                        <div class=\"news-image wow img-custom-anim-top\" data-wow-duration=\"1.5s\" data-wow-delay=\"0.2s\">\r\n                        <img decoding=\"async\" src=\"https:\/\/epiction.co\/softworks\/wp-content\/uploads\/2024\/12\/types-of-seo.jpg\" alt=\"img\">\r\n                    <\/div>\r\n                                        <div class=\"news-content\">\r\n                        <ul class=\"post-cat\">\r\n                            <li>\r\n                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n                                    <path d=\"M13.334 1.33398H5.33398C4.60065 1.33398 4.00065 1.93398 4.00065 2.66732V4.00065H2.66732C1.93398 4.00065 1.33398 4.60065 1.33398 5.33398V14.6673L4.00065 12.0007H10.6673C11.4007 12.0007 12.0007 11.4007 12.0007 10.6673V9.33398L14.6673 12.0007V2.66732C14.6673 1.93398 14.0673 1.33398 13.334 1.33398ZM5.33398 8.66732C4.96632 8.66732 4.66732 8.36832 4.66732 8.00065V2.66732C4.66732 2.29965 4.96632 2.00065 5.33398 2.00065H13.334C13.7017 2.00065 14.0007 2.29965 14.0007 2.66732V10.3913L12.2767 8.66732H5.33398ZM11.334 10.6673C11.334 11.035 11.035 11.334 10.6673 11.334H3.72465L2.00065 13.058V5.33398C2.00065 4.96632 2.29965 4.66732 2.66732 4.66732H4.00065V8.00065C4.00065 8.73398 4.60065 9.33398 5.33398 9.33398H11.334V10.6673Z\" fill=\"#6A47ED\"\/>\r\n                                <\/svg>\r\n                                Comment (0)                            <\/li>\r\n                                                        <li>\r\n                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n                                    <path d=\"M5.33398 3.83301C5.06065 3.83301 4.83398 3.60634 4.83398 3.33301V1.33301C4.83398 1.05967 5.06065 0.833008 5.33398 0.833008C5.60732 0.833008 5.83398 1.05967 5.83398 1.33301V3.33301C5.83398 3.60634 5.60732 3.83301 5.33398 3.83301ZM10.6673 3.83301C10.394 3.83301 10.1673 3.60634 10.1673 3.33301V1.33301C10.1673 1.05967 10.394 0.833008 10.6673 0.833008C10.9407 0.833008 11.1673 1.05967 11.1673 1.33301V3.33301C11.1673 3.60634 10.9407 3.83301 10.6673 3.83301ZM5.66732 9.66634C5.58065 9.66634 5.49398 9.64634 5.41398 9.61301C5.32732 9.57967 5.26065 9.53301 5.19398 9.47301C5.07398 9.34634 5.00065 9.17968 5.00065 8.99967C5.00065 8.91301 5.02065 8.82634 5.05398 8.74634C5.08732 8.66634 5.13398 8.59301 5.19398 8.52634C5.26065 8.46634 5.32732 8.41967 5.41398 8.38634C5.65398 8.28634 5.95398 8.33967 6.14065 8.52634C6.26065 8.65301 6.33398 8.82634 6.33398 8.99967C6.33398 9.03967 6.32732 9.08634 6.32065 9.13301C6.31398 9.17301 6.30065 9.21301 6.28065 9.25301C6.26732 9.29301 6.24732 9.33301 6.22065 9.37301C6.20065 9.40634 6.16732 9.43967 6.14065 9.47301C6.01398 9.59301 5.84065 9.66634 5.66732 9.66634ZM8.00065 9.66634C7.91398 9.66634 7.82732 9.64634 7.74732 9.61301C7.66065 9.57967 7.59398 9.53301 7.52732 9.47301C7.40732 9.34634 7.33398 9.17968 7.33398 8.99967C7.33398 8.91301 7.35398 8.82634 7.38732 8.74634C7.42065 8.66634 7.46732 8.59301 7.52732 8.52634C7.59398 8.46634 7.66065 8.41967 7.74732 8.38634C7.98732 8.27967 8.28732 8.33967 8.47398 8.52634C8.59398 8.65301 8.66732 8.82634 8.66732 8.99967C8.66732 9.03967 8.66065 9.08634 8.65398 9.13301C8.64732 9.17301 8.63398 9.21301 8.61398 9.25301C8.60065 9.29301 8.58065 9.33301 8.55398 9.37301C8.53398 9.40634 8.50065 9.43967 8.47398 9.47301C8.34732 9.59301 8.17398 9.66634 8.00065 9.66634ZM10.334 9.66634C10.2473 9.66634 10.1607 9.64634 10.0807 9.61301C9.99398 9.57967 9.92732 9.53301 9.86065 9.47301L9.78065 9.37301C9.7554 9.33586 9.73522 9.2955 9.72065 9.25301C9.70139 9.21523 9.68791 9.17478 9.68065 9.13301C9.67398 9.08634 9.66732 9.03967 9.66732 8.99967C9.66732 8.82634 9.74065 8.65301 9.86065 8.52634C9.92732 8.46634 9.99398 8.41967 10.0807 8.38634C10.3273 8.27967 10.6207 8.33967 10.8073 8.52634C10.9273 8.65301 11.0007 8.82634 11.0007 8.99967C11.0007 9.03967 10.994 9.08634 10.9873 9.13301C10.9806 9.17301 10.9673 9.21301 10.9473 9.25301C10.934 9.29301 10.914 9.33301 10.8873 9.37301C10.8673 9.40634 10.834 9.43967 10.8073 9.47301C10.6806 9.59301 10.5073 9.66634 10.334 9.66634ZM5.66732 11.9997C5.58065 11.9997 5.49398 11.9797 5.41398 11.9463C5.33398 11.913 5.26065 11.8663 5.19398 11.8063C5.07398 11.6797 5.00065 11.5063 5.00065 11.333C5.00065 11.2463 5.02065 11.1597 5.05398 11.0797C5.08732 10.993 5.13398 10.9197 5.19398 10.8597C5.44065 10.613 5.89398 10.613 6.14065 10.8597C6.26065 10.9863 6.33398 11.1597 6.33398 11.333C6.33398 11.5063 6.26065 11.6797 6.14065 11.8063C6.01398 11.9263 5.84065 11.9997 5.66732 11.9997ZM8.00065 11.9997C7.82732 11.9997 7.65398 11.9263 7.52732 11.8063C7.40732 11.6797 7.33398 11.5063 7.33398 11.333C7.33398 11.2463 7.35398 11.1597 7.38732 11.0797C7.42065 10.993 7.46732 10.9197 7.52732 10.8597C7.77398 10.613 8.22732 10.613 8.47398 10.8597C8.53398 10.9197 8.58065 10.993 8.61398 11.0797C8.64732 11.1597 8.66732 11.2463 8.66732 11.333C8.66732 11.5063 8.59398 11.6797 8.47398 11.8063C8.34732 11.9263 8.17398 11.9997 8.00065 11.9997ZM10.334 11.9997C10.1607 11.9997 9.98732 11.9263 9.86065 11.8063C9.79896 11.7437 9.75125 11.6687 9.72065 11.5863C9.68732 11.5063 9.66732 11.4197 9.66732 11.333C9.66732 11.2463 9.68732 11.1597 9.72065 11.0797C9.75398 10.993 9.80065 10.9197 9.86065 10.8597C10.014 10.7063 10.2473 10.633 10.4607 10.6797C10.5073 10.6863 10.5473 10.6997 10.5873 10.7197C10.6273 10.733 10.6673 10.753 10.7073 10.7797C10.7407 10.7997 10.774 10.833 10.8073 10.8597C10.9273 10.9863 11.0007 11.1597 11.0007 11.333C11.0007 11.5063 10.9273 11.6797 10.8073 11.8063C10.6806 11.9263 10.5073 11.9997 10.334 11.9997ZM13.6673 6.55967H2.33398C2.06065 6.55967 1.83398 6.33301 1.83398 6.05967C1.83398 5.78634 2.06065 5.55967 2.33398 5.55967H13.6673C13.9406 5.55967 14.1673 5.78634 14.1673 6.05967C14.1673 6.33301 13.9406 6.55967 13.6673 6.55967Z\" fill=\"#6A47ED\"\/>\r\n                                    <path d=\"M10.6676 15.1663H5.33431C2.90098 15.1663 1.50098 13.7663 1.50098 11.333V5.66634C1.50098 3.23301 2.90098 1.83301 5.33431 1.83301H10.6676C13.101 1.83301 14.501 3.23301 14.501 5.66634V11.333C14.501 13.7663 13.101 15.1663 10.6676 15.1663ZM5.33431 2.83301C3.42764 2.83301 2.50098 3.75967 2.50098 5.66634V11.333C2.50098 13.2397 3.42764 14.1663 5.33431 14.1663H10.6676C12.5743 14.1663 13.501 13.2397 13.501 11.333V5.66634C13.501 3.75967 12.5743 2.83301 10.6676 2.83301H5.33431Z\" fill=\"#6A47ED\"\/>\r\n                                <\/svg>\r\n                                December 15, 2024  \r\n                            <\/li>\r\n                                                    <\/ul>\r\n                        <h5><a href=\"https:\/\/epiction.co\/softworks\/ultimate-guide-to-the-best-seo-practices\/\">Ultimate Guide to the Best SEO Practices<\/a><\/h5>\r\n                        <div class=\"news-btn\">\r\n                            <a href=\"https:\/\/epiction.co\/softworks\/ultimate-guide-to-the-best-seo-practices\/\" class=\"link-btn\">Read More <i class=\"fa-regular fa-arrow-right-long\"><\/i><\/a>\r\n                            <img alt='' src='https:\/\/epiction.co\/softworks\/wp-content\/litespeed\/avatar\/7bcc07f944f640705df78a538017a980.jpg?ver=1776469815' srcset='https:\/\/epiction.co\/softworks\/wp-content\/litespeed\/avatar\/2140e37d39eb306b060d81eb18cd19f3.jpg?ver=1776469815 2x' class='avatar avatar-35 photo' height='35' width='35' \/>                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n                                 <\/div>\r\n\r\n        \t\r\n\r\n        \t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>How to improve? Key Factors for Improving Website Performance After analyzing your website&#8217;s speed, consider these key tips to optimize performance: Optimize Images and Media Large images and videos can significantly slow down your website. Use image optimization techniques to reduce file sizes without losing quality. Consider tools like WebP format or automated solutions like<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-1541","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/epiction.co\/softworks\/wp-json\/wp\/v2\/pages\/1541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/epiction.co\/softworks\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/epiction.co\/softworks\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/epiction.co\/softworks\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/epiction.co\/softworks\/wp-json\/wp\/v2\/comments?post=1541"}],"version-history":[{"count":0,"href":"https:\/\/epiction.co\/softworks\/wp-json\/wp\/v2\/pages\/1541\/revisions"}],"wp:attachment":[{"href":"https:\/\/epiction.co\/softworks\/wp-json\/wp\/v2\/media?parent=1541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}