{"id":8311094,"date":"2025-09-18T10:17:48","date_gmt":"2025-09-18T07:17:48","guid":{"rendered":"https:\/\/elementor.com\/tools\/?p=8311094"},"modified":"2025-09-18T10:18:11","modified_gmt":"2025-09-18T07:18:11","slug":"tax-calculator","status":"publish","type":"post","link":"https:\/\/elementor.com\/tools\/tax-calculator\/","title":{"rendered":"Tax Calculator"},"content":{"rendered":"\t\t<div data-elementor-type=\"container\" data-elementor-id=\"8311092\" class=\"elementor elementor-8311092\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23691a2c e-flex e-con-boxed e-con e-parent\" data-id=\"23691a2c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-37c3711c elementor-widget elementor-widget-html\" data-id=\"37c3711c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\n    \/* Main App Container - Adapted from your .html-viewer-app *\/\r\n    .tax-calculator-app {\r\n        width: 100%;\r\n        max-width: 700px; \/* Adjusted for a single-panel layout *\/\r\n        margin: 0 auto;\r\n        padding: 60px 0 0;\r\n        font-family: 'DM Sans', sans-serif; \/* Added for consistency *\/\r\n    }\r\n\r\n    \/* Main Content Area - Adapted from your .main-content *\/\r\n    .main-content {\r\n        display: flex;\r\n        justify-content: center;\r\n        align-items: flex-start;\r\n    }\r\n\r\n    \/* Calculator Panel - Merges ideas from .input-section and .output-section *\/\r\n    .calculator-section {\r\n        width: 100%;\r\n        background: white;\r\n        border-radius: 8px;\r\n        overflow: hidden;\r\n        box-shadow: 0 4px 15px rgba(0,0,0,0.1);\r\n        border: 1.5px solid #EBEBEB;\r\n    }\r\n\r\n    \/* Header Style - Reused from your .section-header *\/\r\n    .section-header {\r\n        background-color: #05047E;\r\n        color: white;\r\n        padding: 16px 24px;\r\n        font-weight: 500;\r\n        font-size: 1.25rem;\r\n    }\r\n\r\n    \/* Form & Results Container *\/\r\n    .calculator-body {\r\n        padding: 24px;\r\n    }\r\n\r\n    \/* Input Group Styling *\/\r\n    .form-group {\r\n        margin-bottom: 20px;\r\n    }\r\n\r\n    .form-group label {\r\n        display: block;\r\n        margin-bottom: 8px;\r\n        font-size: 1rem;\r\n        font-weight: 500;\r\n        color: #333;\r\n    }\r\n\r\n    .calculator-input {\r\n        width: 100%;\r\n        padding: 12px 15px;\r\n        font-size: 1.1rem;\r\n        border: 1.5px solid #EBEBEB;\r\n        border-radius: 4px;\r\n        background-color: #fdfdff;\r\n        color: #333;\r\n        box-sizing: border-box; \/* Ensures padding doesn't affect width *\/\r\n        transition: border-color 0.2s, box-shadow 0.2s;\r\n    }\r\n    \r\n    .calculator-input:focus {\r\n        outline: none;\r\n        border-color: #05047E;\r\n        box-shadow: 0 0 0 3px rgba(5, 4, 126, 0.1);\r\n    }\r\n    \r\n    .input-prefix {\r\n        position: relative;\r\n    }\r\n\r\n    .input-prefix::before {\r\n        content: '$';\r\n        position: absolute;\r\n        left: 15px;\r\n        top: 50%;\r\n        transform: translateY(-50%);\r\n        font-size: 1.1rem;\r\n        color: #6c757d;\r\n    }\r\n\r\n    .input-prefix .calculator-input {\r\n        padding-left: 30px;\r\n    }\r\n\r\n\r\n    \/* Buttons - Reused from your .format-btn and .reset-btn *\/\r\n    .format-btn-container {\r\n        display: flex;\r\n        gap: 12px;\r\n        margin-top: 24px;\r\n        align-items: center;\r\n    }\r\n\r\n    .format-btn {\r\n        background-color: #000;\r\n        color: white;\r\n        border: none;\r\n        padding: 12px 20px;\r\n        cursor: pointer;\r\n        font-size: 1.125rem;\r\n        font-weight: 500;\r\n        transition: all 0.2s;\r\n        flex-grow: 1; \/* Make button expand *\/\r\n        border-radius: 4px;\r\n    }\r\n\r\n    .format-btn:is(:hover, :focus, :focus-visible, :active){\r\n        background-color: #545454;\r\n    }\r\n\r\n    .reset-btn {\r\n        background: none;\r\n        border: none;\r\n        color: black;\r\n        text-decoration: underline;\r\n        font-size: 1rem;\r\n        cursor: pointer;\r\n        padding: 0;\r\n        transition: color 0.2s;\r\n    }\r\n\r\n    .reset-btn:is(:hover, :focus, :focus-visible, :active) {\r\n        background: none;\r\n        color: #545454;\r\n        text-decoration: underline;\r\n    }\r\n    \r\n    \/* Results Section Styling *\/\r\n    .results-section {\r\n        margin-top: 30px;\r\n        padding-top: 20px;\r\n        border-top: 1px solid #EBEBEB;\r\n        opacity: 0;\r\n        transform: translateY(10px);\r\n        transition: opacity 0.4s ease, transform 0.4s ease;\r\n        max-height: 0;\r\n        overflow: hidden;\r\n    }\r\n    \r\n    .results-section.show {\r\n        opacity: 1;\r\n        transform: translateY(0);\r\n        max-height: 500px; \/* Allow space for content *\/\r\n    }\r\n\r\n    .results-section h3 {\r\n        margin: 0 0 16px 0;\r\n        font-size: 1.2rem;\r\n        font-weight: 500;\r\n    }\r\n\r\n    .result-item {\r\n        display: flex;\r\n        justify-content: space-between;\r\n        align-items: center;\r\n        padding: 12px 0;\r\n        font-size: 1.1rem;\r\n        border-bottom: 1px solid #f0f0f0;\r\n    }\r\n\r\n    .result-item:last-child {\r\n        border-bottom: none;\r\n    }\r\n\r\n    .result-item .label {\r\n        color: #555;\r\n    }\r\n\r\n    .result-item .value {\r\n        font-weight: 600;\r\n        color: #05047E;\r\n    }\r\n    \r\n    \/* Responsive design based on your media queries *\/\r\n    @media (max-width: 768px) {\r\n        .tax-calculator-app {\r\n            padding: 30px 15px 0;\r\n        }\r\n        .section-header {\r\n            padding: 12px 16px;\r\n            font-size: 1.1rem;\r\n        }\r\n        .calculator-body {\r\n            padding: 16px;\r\n        }\r\n        .format-btn-container {\r\n            flex-direction: column;\r\n            align-items: stretch;\r\n        }\r\n        .reset-btn {\r\n            text-align: center;\r\n            padding: 8px 0;\r\n        }\r\n    }\r\n<\/style>\r\n\r\n<div class=\"tax-calculator-app\">\r\n    <div class=\"main-content\">\r\n        <div class=\"calculator-section\">\r\n            <div class=\"section-header\">\r\n                Tax Calculator\r\n            <\/div>\r\n            <div class=\"calculator-body\">\r\n                <form id=\"taxForm\">\r\n                    <div class=\"form-group\">\r\n                        <label for=\"incomeInput\">Your Annual Gross Income<\/label>\r\n                        <div class=\"input-prefix\">\r\n                            <input type=\"text\" id=\"incomeInput\" class=\"calculator-input\" placeholder=\"e.g., 75000\" autocomplete=\"off\">\r\n                        <\/div>\r\n                    <\/div>\r\n\r\n                    <div class=\"format-btn-container\">\r\n                        <button type=\"submit\" class=\"format-btn\" id=\"calculateBtn\">Calculate Tax<\/button>\r\n                        <button type=\"button\" class=\"reset-btn\" id=\"resetBtn\">Reset<\/button>\r\n                    <\/div>\r\n                <\/form>\r\n\r\n                <div class=\"results-section\" id=\"resultsSection\">\r\n                    <h3>Calculation Results<\/h3>\r\n                    <div class=\"result-item\">\r\n                        <span class=\"label\">Total Tax Owed:<\/span>\r\n                        <span class=\"value\" id=\"taxAmount\">$0.00<\/span>\r\n                    <\/div>\r\n                    <div class=\"result-item\">\r\n                        <span class=\"label\">Net Income (After Tax):<\/span>\r\n                        <span class=\"value\" id=\"netIncome\">$0.00<\/span>\r\n                    <\/div>\r\n                    <div class=\"result-item\">\r\n                        <span class=\"label\">Effective Tax Rate:<\/span>\r\n                        <span class=\"value\" id=\"effectiveRate\">0.00%<\/span>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', function() {\r\n        const taxForm = document.getElementById('taxForm');\r\n        const incomeInput = document.getElementById('incomeInput');\r\n        const resetBtn = document.getElementById('resetBtn');\r\n        const resultsSection = document.getElementById('resultsSection');\r\n\r\n        const taxAmountEl = document.getElementById('taxAmount');\r\n        const netIncomeEl = document.getElementById('netIncome');\r\n        const effectiveRateEl = document.getElementById('effectiveRate');\r\n\r\n        \/\/ Hypothetical progressive tax brackets (for a single filer)\r\n        \/\/ You can easily adjust these rates and income levels\r\n        const taxBrackets = [\r\n            { limit: 11000, rate: 0.10 },   \/\/ 10% on income up to $11,000\r\n            { limit: 44725, rate: 0.12 },   \/\/ 12% on income from $11,001 to $44,725\r\n            { limit: 95375, rate: 0.22 },   \/\/ 22% on income from $44,726 to $95,375\r\n            { limit: 182100, rate: 0.24 },  \/\/ 24% on income from $95,376 to $182,100\r\n            { limit: 231250, rate: 0.32 },  \/\/ 32% on income from $182,101 to $231,250\r\n            { limit: 578125, rate: 0.35 },  \/\/ 35% on income from $231,251 to $578,125\r\n            { limit: Infinity, rate: 0.37 } \/\/ 37% on income over $578,125\r\n        ];\r\n\r\n        \/\/ Function to calculate tax based on progressive brackets\r\n        function calculateTax(income) {\r\n            let tax = 0;\r\n            let remainingIncome = income;\r\n            let previousLimit = 0;\r\n\r\n            for (const bracket of taxBrackets) {\r\n                if (remainingIncome <= 0) break;\r\n\r\n                const taxableInBracket = Math.min(remainingIncome, bracket.limit - previousLimit);\r\n                tax += taxableInBracket * bracket.rate;\r\n                remainingIncome -= taxableInBracket;\r\n                previousLimit = bracket.limit;\r\n            }\r\n            return tax;\r\n        }\r\n\r\n        \/\/ Function to format numbers as currency\r\n        function formatCurrency(amount) {\r\n            return new Intl.NumberFormat('en-US', {\r\n                style: 'currency',\r\n                currency: 'USD'\r\n            }).format(amount);\r\n        }\r\n        \r\n        \/\/ Handle form submission\r\n        taxForm.addEventListener('submit', function(e) {\r\n            e.preventDefault(); \/\/ Prevent page reload\r\n\r\n            \/\/ Clean the input value by removing commas and non-numeric characters\r\n            const incomeValue = parseFloat(incomeInput.value.replace(\/[^0-9.]\/g, ''));\r\n\r\n            if (isNaN(incomeValue) || incomeValue < 0) {\r\n                \/\/ Optionally, you can add an error message here\r\n                alert(\"Please enter a valid positive number for income.\");\r\n                return;\r\n            }\r\n            \r\n            const totalTax = calculateTax(incomeValue);\r\n            const netIncome = incomeValue - totalTax;\r\n            const effectiveRate = incomeValue > 0 ? (totalTax \/ incomeValue) * 100 : 0;\r\n\r\n            \/\/ Update the UI with calculated values\r\n            taxAmountEl.textContent = formatCurrency(totalTax);\r\n            netIncomeEl.textContent = formatCurrency(netIncome);\r\n            effectiveRateEl.textContent = effectiveRate.toFixed(2) + '%';\r\n            \r\n            \/\/ Show the results section with a smooth animation\r\n            resultsSection.classList.add('show');\r\n        });\r\n\r\n        \/\/ Handle the reset button\r\n        resetBtn.addEventListener('click', function() {\r\n            incomeInput.value = '';\r\n            taxAmountEl.textContent = '$0.00';\r\n            netIncomeEl.textContent = '$0.00';\r\n            effectiveRateEl.textContent = '0.00%';\r\n            resultsSection.classList.remove('show');\r\n            incomeInput.focus();\r\n        });\r\n        \r\n        \/\/ Auto-format input as user types\r\n        incomeInput.addEventListener('input', function(e) {\r\n            let value = e.target.value.replace(\/[^0-9]\/g, ''); \/\/ Remove non-digits\r\n            if (value) {\r\n                \/\/ Format with commas, but keep it as a string for display\r\n                e.target.value = parseInt(value, 10).toLocaleString('en-US');\r\n            }\r\n        });\r\n\r\n    });\r\n<\/script>\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\t\t<\/div>\n\t\t\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[22],"tags":[21],"class_list":["post-8311094","post","type-post","status-publish","format-standard","hentry","category-tools","tag-html-css-tools"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tax Calculator<\/title>\n<meta name=\"description\" content=\"Use our free Tax Calculator to easily estimate your income tax, business tax, and more. Input your financial details and get accurate tax calculations instantly. Plan your finances with confidence.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elementor.com\/tools\/tax-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tax Calculator\" \/>\n<meta property=\"og:description\" content=\"Use our free Tax Calculator to easily estimate your income tax, business tax, and more. Input your financial details and get accurate tax calculations instantly. Plan your finances with confidence.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elementor.com\/tools\/tax-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Tools\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-18T07:17:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-18T07:18:11+00:00\" \/>\n<meta name=\"author\" content=\"liz@148.red\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"liz@148.red\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/elementor.com\/tools\/tax-calculator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/tax-calculator\/\"},\"author\":{\"name\":\"liz@148.red\",\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"headline\":\"Tax Calculator\",\"datePublished\":\"2025-09-18T07:17:48+00:00\",\"dateModified\":\"2025-09-18T07:18:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/elementor.com\/tools\/tax-calculator\/\"},\"wordCount\":4,\"keywords\":[\"Html-Css-tools\"],\"articleSection\":[\"tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/elementor.com\/tools\/tax-calculator\/\",\"url\":\"https:\/\/elementor.com\/tools\/tax-calculator\/\",\"name\":\"Tax Calculator\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/#website\"},\"datePublished\":\"2025-09-18T07:17:48+00:00\",\"dateModified\":\"2025-09-18T07:18:11+00:00\",\"author\":{\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"description\":\"Use our free Tax Calculator to easily estimate your income tax, business tax, and more. Input your financial details and get accurate tax calculations instantly. Plan your finances with confidence.\",\"breadcrumb\":{\"@id\":\"https:\/\/elementor.com\/tools\/tax-calculator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/elementor.com\/tools\/tax-calculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/elementor.com\/tools\/tax-calculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/elementor.com\/tools\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tax Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/elementor.com\/tools\/#website\",\"url\":\"https:\/\/elementor.com\/tools\/\",\"name\":\"Tools\",\"description\":\"Just another Elementor hosted website ;)\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/elementor.com\/tools\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\",\"name\":\"liz@148.red\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"caption\":\"liz@148.red\"},\"url\":\"https:\/\/elementor.com\/tools\/author\/liz148-red\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tax Calculator","description":"Use our free Tax Calculator to easily estimate your income tax, business tax, and more. Input your financial details and get accurate tax calculations instantly. Plan your finances with confidence.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/elementor.com\/tools\/tax-calculator\/","og_locale":"en_US","og_type":"article","og_title":"Tax Calculator","og_description":"Use our free Tax Calculator to easily estimate your income tax, business tax, and more. Input your financial details and get accurate tax calculations instantly. Plan your finances with confidence.","og_url":"https:\/\/elementor.com\/tools\/tax-calculator\/","og_site_name":"Tools","article_published_time":"2025-09-18T07:17:48+00:00","article_modified_time":"2025-09-18T07:18:11+00:00","author":"liz@148.red","twitter_card":"summary_large_image","twitter_misc":{"Written by":"liz@148.red","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elementor.com\/tools\/tax-calculator\/#article","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/tax-calculator\/"},"author":{"name":"liz@148.red","@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"headline":"Tax Calculator","datePublished":"2025-09-18T07:17:48+00:00","dateModified":"2025-09-18T07:18:11+00:00","mainEntityOfPage":{"@id":"https:\/\/elementor.com\/tools\/tax-calculator\/"},"wordCount":4,"keywords":["Html-Css-tools"],"articleSection":["tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elementor.com\/tools\/tax-calculator\/","url":"https:\/\/elementor.com\/tools\/tax-calculator\/","name":"Tax Calculator","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/#website"},"datePublished":"2025-09-18T07:17:48+00:00","dateModified":"2025-09-18T07:18:11+00:00","author":{"@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"description":"Use our free Tax Calculator to easily estimate your income tax, business tax, and more. Input your financial details and get accurate tax calculations instantly. Plan your finances with confidence.","breadcrumb":{"@id":"https:\/\/elementor.com\/tools\/tax-calculator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elementor.com\/tools\/tax-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elementor.com\/tools\/tax-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elementor.com\/tools\/"},{"@type":"ListItem","position":2,"name":"Tax Calculator"}]},{"@type":"WebSite","@id":"https:\/\/elementor.com\/tools\/#website","url":"https:\/\/elementor.com\/tools\/","name":"Tools","description":"Just another Elementor hosted website ;)","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elementor.com\/tools\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac","name":"liz@148.red","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","caption":"liz@148.red"},"url":"https:\/\/elementor.com\/tools\/author\/liz148-red\/"}]}},"_links":{"self":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8311094","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/comments?post=8311094"}],"version-history":[{"count":1,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8311094\/revisions"}],"predecessor-version":[{"id":8311096,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8311094\/revisions\/8311096"}],"wp:attachment":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/media?parent=8311094"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/categories?post=8311094"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/tags?post=8311094"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}