{"id":6357,"date":"2022-09-02T22:39:21","date_gmt":"2022-09-02T17:09:21","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/"},"modified":"2022-09-02T22:39:21","modified_gmt":"2022-09-02T17:09:21","slug":"solved-how-to-put-this-code-into-a-table-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/","title":{"rendered":"[Solved] How to put this code into a table? [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-10589189\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"10589189\" data-parentid=\"10589097\" data-score=\"6\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<pre><code>&lt;table&gt;\n&lt;!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01 Frameset\/\/EN\"\n   \"http:\/\/www.w3.org\/TR\/html4\/frameset.dtd\"&gt;\n&lt;html&gt;\n    &lt;head&gt;\n        &lt;title&gt;\n            Prueba\n        &lt;\/title&gt;\n    &lt;\/head&gt;\n    &lt;frameset rows=\"56px, *, 50px\" border=\"0\" framespacing=\"0\" frameborder=\"NO\"&gt;\n        &lt;frame class=\"header\" src=\"https:\/\/stackoverflow.com\/questions\/10589097\/header.html\"&gt;\n        &lt;frameset cols=\"450px, *\" border=\"0\" framespacing=\"0\" frameborder=\"NO\"&gt;\n            &lt;frameset rows=\"*,150px\" border=\"0\" framespacing=\"0\" frameborder=\"NO\"&gt;\n                &lt;frame class=\"frame1\" scrolling=\"auto\" src=\"search_results.html\"&gt;\n                &lt;frame class=\"frame2\" scrolling=\"no\" src=\"info.html\"&gt;\n            &lt;\/frameset&gt;\n            &lt;frame class=\"frame3\" scrolling=\"no\" src=\"map.html\"&gt;\n        &lt;\/frameset&gt;\n        &lt;frame class=\"footer\" scrolling=\"no\" src=\"footer.html\"&gt;\n    &lt;\/frameset&gt;\n&lt;\/html&gt;\n&lt;\/table&gt;\n<\/code><\/pre>\n<p>There.<\/p>\n<hr>\n<p>But serious. You don&#8217;t want to use tables for layouting. Neither should you use frames.<\/p>\n<p>The way to go would be to use divs. Or the new HTML5 elements.<\/p>\n<p>Some new elements added to HTML are:<\/p>\n<p><strong>Sections elements<\/strong><\/p>\n<ul>\n<li>section<\/li>\n<li>nav<\/li>\n<li>article<\/li>\n<li>aside<\/li>\n<li>hgroup<\/li>\n<li>header<\/li>\n<li>footer<\/li>\n<li>address<\/li>\n<\/ul>\n<p><strong>Grouping elements<\/strong><\/p>\n<ul>\n<li>figure<\/li>\n<li>figcaption<\/li>\n<\/ul>\n<p>Some benefits when not using tables for your layout:<\/p>\n<ul>\n<li>tables render slower<\/li>\n<li>tables don&#8217;t work too well when using a fluid design<\/li>\n<li>tables are not the correct semantic elements to use for layout<\/li>\n<li>tables are for tabular data<\/li>\n<li>tables aren&#8217;t really flexible if you want to change your layout at some point<\/li>\n<\/ul>\n<p>Please note that when you want to use the new HTML5 elements you should set the correct doctype:<\/p>\n<pre><code>&lt;!DOCTYPE html&gt;\n<\/code><\/pre>\n<p>Also note that &#8216;older&#8217; browser (and IE) don&#8217;t know the new elements. To fix this issue you could add this simply JS script in the head of the document:<\/p>\n<pre><code>&lt;script&gt;\n  document.createElement('header');\n  document.createElement('nav');\n  document.createElement('section');\n  document.createElement('article');\n  document.createElement('aside');\n  document.createElement('footer');\n  document.createElement('time');\n&lt;\/script&gt;\n<\/code><\/pre>\n<hr>\n<p>What you would get is something like the following:<\/p>\n<p><strong>CSS<\/strong><\/p>\n<pre><code>\u200b#body { width: 960px; }\naside { width: 450px; float: left; }\n.content { margin-left: 450px; }\n<\/code><\/pre>\n<p><strong>HTML<\/strong><\/p>\n<pre><code>&lt;div id=\"body\"&gt;\n    &lt;header&gt;\n        &lt;h1&gt;Your header&lt;\/h1&gt;\n    &lt;\/header&gt;\n    &lt;aside&gt;\n        &lt;p&gt;Aside&lt;\/p&gt;\n    &lt;\/aside&gt;\n    &lt;div class=\"content\"&gt;\n        &lt;h2&gt;Title&lt;\/h2&gt;\n        &lt;p&gt;Some text&lt;\/p&gt;\n    &lt;\/div&gt;    \n    &lt;footer&gt;\n        &lt;p&gt;Your footer&lt;\/p&gt;\n    &lt;\/footer&gt;\n&lt;\/div&gt;    \u200b\n<\/code><\/pre>\n<p><strong>Demo<\/strong><\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/jsfiddle.net\/ZGPAW\/\">http:\/\/jsfiddle.net\/ZGPAW\/<\/a><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">3<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to put this code into a table? [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] &lt;table&gt; &lt;!DOCTYPE HTML PUBLIC &#8220;-\/\/W3C\/\/DTD HTML 4.01 Frameset\/\/EN&#8221; &#8220;http:\/\/www.w3.org\/TR\/html4\/frameset.dtd&#8221;&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt; Prueba &lt;\/title&gt; &lt;\/head&gt; &lt;frameset rows=&#8221;56px, *, 50px&#8221; border=&#8221;0&#8243; framespacing=&#8221;0&#8243; frameborder=&#8221;NO&#8221;&gt; &lt;frame class=&#8221;header&#8221; src=&#8221;https:\/\/stackoverflow.com\/questions\/10589097\/header.html&#8221;&gt; &lt;frameset cols=&#8221;450px, *&#8221; border=&#8221;0&#8243; framespacing=&#8221;0&#8243; frameborder=&#8221;NO&#8221;&gt; &lt;frameset rows=&#8221;*,150px&#8221; border=&#8221;0&#8243; framespacing=&#8221;0&#8243; frameborder=&#8221;NO&#8221;&gt; &lt;frame class=&#8221;frame1&#8243; scrolling=&#8221;auto&#8221; src=&#8221;search_results.html&#8221;&gt; &lt;frame class=&#8221;frame2&#8243; scrolling=&#8221;no&#8221; src=&#8221;info.html&#8221;&gt; &lt;\/frameset&gt; &lt;frame class=&#8221;frame3&#8243; scrolling=&#8221;no&#8221; src=&#8221;map.html&#8221;&gt; &lt;\/frameset&gt; &lt;frame class=&#8221;footer&#8221; scrolling=&#8221;no&#8221; src=&#8221;footer.html&#8221;&gt; &#8230; <a title=\"[Solved] How to put this code into a table? [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\" aria-label=\"More on [Solved] How to put this code into a table? [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[1747,1748,346],"class_list":["post-6357","post","type-post","status-publish","format-standard","hentry","category-solved","tag-frame","tag-frameset","tag-html"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to put this code into a table? [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to put this code into a table? [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] &lt;table&gt; &lt;!DOCTYPE HTML PUBLIC &quot;-\/\/W3C\/\/DTD HTML 4.01 Frameset\/\/EN&quot; &quot;http:\/\/www.w3.org\/TR\/html4\/frameset.dtd&quot;&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt; Prueba &lt;\/title&gt; &lt;\/head&gt; &lt;frameset rows=&quot;56px, *, 50px&quot; border=&quot;0&quot; framespacing=&quot;0&quot; frameborder=&quot;NO&quot;&gt; &lt;frame class=&quot;header&quot; src=&quot;https:\/\/stackoverflow.com\/questions\/10589097\/header.html&quot;&gt; &lt;frameset cols=&quot;450px, *&quot; border=&quot;0&quot; framespacing=&quot;0&quot; frameborder=&quot;NO&quot;&gt; &lt;frameset rows=&quot;*,150px&quot; border=&quot;0&quot; framespacing=&quot;0&quot; frameborder=&quot;NO&quot;&gt; &lt;frame class=&quot;frame1&quot; scrolling=&quot;auto&quot; src=&quot;search_results.html&quot;&gt; &lt;frame class=&quot;frame2&quot; scrolling=&quot;no&quot; src=&quot;info.html&quot;&gt; &lt;\/frameset&gt; &lt;frame class=&quot;frame3&quot; scrolling=&quot;no&quot; src=&quot;map.html&quot;&gt; &lt;\/frameset&gt; &lt;frame class=&quot;footer&quot; scrolling=&quot;no&quot; src=&quot;footer.html&quot;&gt; ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-02T17:09:21+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to put this code into a table? [closed]\",\"datePublished\":\"2022-09-02T17:09:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\"},\"wordCount\":192,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"frame\",\"frameset\",\"html\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\",\"name\":\"[Solved] How to put this code into a table? [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-02T17:09:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to put this code into a table? [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to put this code into a table? [closed] - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to put this code into a table? [closed] - JassWeb","og_description":"[ad_1] &lt;table&gt; &lt;!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01 Frameset\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/frameset.dtd\"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt; Prueba &lt;\/title&gt; &lt;\/head&gt; &lt;frameset rows=\"56px, *, 50px\" border=\"0\" framespacing=\"0\" frameborder=\"NO\"&gt; &lt;frame class=\"header\" src=\"https:\/\/stackoverflow.com\/questions\/10589097\/header.html\"&gt; &lt;frameset cols=\"450px, *\" border=\"0\" framespacing=\"0\" frameborder=\"NO\"&gt; &lt;frameset rows=\"*,150px\" border=\"0\" framespacing=\"0\" frameborder=\"NO\"&gt; &lt;frame class=\"frame1\" scrolling=\"auto\" src=\"search_results.html\"&gt; &lt;frame class=\"frame2\" scrolling=\"no\" src=\"info.html\"&gt; &lt;\/frameset&gt; &lt;frame class=\"frame3\" scrolling=\"no\" src=\"map.html\"&gt; &lt;\/frameset&gt; &lt;frame class=\"footer\" scrolling=\"no\" src=\"footer.html\"&gt; ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/","og_site_name":"JassWeb","article_published_time":"2022-09-02T17:09:21+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to put this code into a table? [closed]","datePublished":"2022-09-02T17:09:21+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/"},"wordCount":192,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["frame","frameset","html"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/","name":"[Solved] How to put this code into a table? [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-02T17:09:21+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-put-this-code-into-a-table-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to put this code into a table? [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/6357","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=6357"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/6357\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=6357"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=6357"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=6357"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}