{"id":8536,"date":"2026-01-21T05:15:59","date_gmt":"2026-01-21T05:15:59","guid":{"rendered":"https:\/\/www.tokyoconsultingfirm.com\/india\/?page_id=8536"},"modified":"2026-01-21T05:34:43","modified_gmt":"2026-01-21T05:34:43","slug":"keyword-planner","status":"publish","type":"page","link":"https:\/\/www.tokyoconsultingfirm.com\/india\/keyword-planner\/","title":{"rendered":"\u00a0Keyword Planner"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"hi\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Simple Keyword Planner Tool<\/title>\n    <style>\n        :root {\n            --primary: #786f16;\n            --bg: #f1f5f9;\n            --white: #ffffff;\n        }\n\n        body {\n            font-family: 'Segoe UI', Tahoma, sans-serif;\n            background-color: var(--bg);\n            margin: 0;\n            padding: 20px;\n        }\n\n        .tool-card {\n            max-width: 800px;\n            margin: 0 auto;\n            background: var(--white);\n            border-radius: 12px;\n            box-shadow: 0 5px 20px rgba(0,0,0,0.1);\n            overflow: hidden;\n            border: 1px solid #e2e8f0;\n        }\n\n        .header {\n            background: #002E5B;\n            color: white;\n            padding: 20px;\n            text-align: center;\n        }\n\n        .header h2 { margin: 0; font-size: 22px; text-transform: uppercase; color:#fff; }\n\n        .content { padding: 25px; }\n\n        .search-area {\n            display: flex;\n            gap: 10px;\n            margin-bottom: 20px;\n        }\n\n        input[type=\"text\"] {\n            flex: 1;\n            padding: 12px;\n            border: 2px solid #cbd5e1;\n            border-radius: 6px;\n            font-size: 16px;\n            outline: none;\n        }\n\n        input:focus { border-color: var(--primary); }\n\n        .btn {\n            padding: 12px 20px;\n            background: #000;\n            color: white;\n            border: none;\n            border-radius: 6px;\n            font-weight: bold;\n            cursor: pointer;\n            transition: 0.3s;\n        }\n\n        .btn:hover { background: var(--primary); }\n\n        \/* Results Table *\/\n        .result-container {\n            margin-top: 20px;\n            overflow-x: auto;\n            display: none;\n        }\n\n        table {\n            width: 100%;\n            border-collapse: collapse;\n            min-width: 500px;\n        }\n\n        th {\n            background: #f8fafc;\n            color: #64748b;\n            text-transform: uppercase;\n            font-size: 12px;\n            padding: 12px;\n            border: 1px solid #e2e8f0;\n        }\n\n        td {\n            padding: 12px;\n            border: 1px solid #e2e8f0;\n            font-size: 14px;\n        }\n\n        .badge {\n            padding: 4px 8px;\n            border-radius: 4px;\n            font-size: 11px;\n            font-weight: bold;\n            color: white;\n        }\n\n        .bg-green { background: #22c55e; }\n        .bg-orange { background: #f59e0b; }\n\n        .export-btn {\n            margin-top: 15px;\n            background: #16a34a;\n            width: 100%;\n        }\n\n        @media (max-width: 600px) {\n            .search-area { flex-direction: column; }\n        }\n    <\/style>\n<\/head>\n<body>\n\n<div class=\"tool-card\">\n    <div class=\"header\">\n        <h2>Keyword Planner<\/h2>\n    <\/div>\n\n    <div class=\"content\">\n        <div class=\"search-area\">\n            <input type=\"text\" id=\"keywordInput\" placeholder=\"Enter keyword (e.g. Job, Result, News)\">\n            <button class=\"btn\" onclick=\"findKeywords()\">Find Keywords<\/button>\n        <\/div>\n\n        <div class=\"result-container\" id=\"resultContainer\">\n            <table id=\"keywordTable\">\n                <thead>\n                    <tr>\n                        <th>Keyword<\/th>\n                        <th>Volume<\/th>\n                        <th>CPC<\/th>\n                        <th>Competition<\/th>\n                    <\/tr>\n                <\/thead>\n                <tbody id=\"tableBody\">\n                    <\/tbody>\n            <\/table>\n            <button class=\"btn export-btn\" onclick=\"exportToExcel()\">Download as CSV (Excel)<\/button>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    function findKeywords() {\n        const input = document.getElementById('keywordInput').value.trim();\n        if (!input) {\n            alert(\"Kuch keyword likhein!\");\n            return;\n        }\n\n        const container = document.getElementById('resultContainer');\n        const body = document.getElementById('tableBody');\n        body.innerHTML = \"\"; \/\/ Purana data saaf karein\n\n        \/\/ Ye list aapke input ke saath naye ideas banayegi\n        const ideas = [\"Best\", \"Free\", \"Online\", \"Near Me\", \"New\", \"2026\", \"Full Guide\", \"Details\"];\n        \n        ideas.forEach(prefix => {\n            const volume = Math.floor(Math.random() * 90000) + 500;\n            const cpc = (Math.random() * 1.5).toFixed(2);\n            const comp = Math.random() > 0.5 ? \"High\" : \"Low\";\n            const badgeClass = comp === \"High\" ? \"bg-orange\" : \"bg-green\";\n\n            const row = `\n                <tr>\n                    <td><strong>${prefix} ${input}<\/strong><\/td>\n                    <td>${volume.toLocaleString()}<\/td>\n                    <td>$${cpc}<\/td>\n                    <td><span class=\"badge ${badgeClass}\">${comp}<\/span><\/td>\n                <\/tr>\n            `;\n            body.innerHTML += row;\n        });\n\n        container.style.display = \"block\";\n    }\n\n    \/\/ Excel (CSV) Download Function\n    function exportToExcel() {\n        let csv = \"Keyword,Volume,CPC,Competition\\n\";\n        const rows = document.querySelectorAll(\"table tr\");\n\n        for (let i = 1; i < rows.length; i++) {\n            const cols = rows[i].querySelectorAll(\"td\");\n            const rowData = Array.from(cols).map(c => c.innerText.replace(\",\", \"\"));\n            csv += rowData.join(\",\") + \"\\n\";\n        }\n\n        const blob = new Blob([csv], { type: 'text\/csv' });\n        const url = window.URL.createObjectURL(blob);\n        const a = document.createElement('a');\n        a.setAttribute('hidden', '');\n        a.setAttribute('href', url);\n        a.setAttribute('download', 'keywords.csv');\n        document.body.appendChild(a);\n        a.click();\n        document.body.removeChild(a);\n    }\n<\/script>\n\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Simple Keyword Planner Tool Keyword Planner Find Keywords Keyword Volume CPC Competition Download as CSV (Excel)<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-8536","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/pages\/8536","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/comments?post=8536"}],"version-history":[{"count":5,"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/pages\/8536\/revisions"}],"predecessor-version":[{"id":8541,"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/pages\/8536\/revisions\/8541"}],"wp:attachment":[{"href":"https:\/\/www.tokyoconsultingfirm.com\/india\/wp-json\/wp\/v2\/media?parent=8536"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}