{"id":21628,"date":"2021-03-03T20:38:07","date_gmt":"2021-03-04T01:38:07","guid":{"rendered":"http:\/\/bangla.salearningschool.com\/recent-posts\/css-selectors-by-example-web-development-css-root-by-sayed-ahmed\/"},"modified":"2021-03-03T20:38:07","modified_gmt":"2021-03-04T01:38:07","slug":"css-selectors-by-example-web-development-css-root-by-sayed-ahmed","status":"publish","type":"post","link":"http:\/\/bangla.sitestree.com\/?p=21628","title":{"rendered":"Css selectors by Example #Web Development #CSS #Root #By Sayed Ahmed"},"content":{"rendered":"<p>\/* the style will be applied to all elements using intro for class attribute*\/<br \/>\n.intro<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to the element with id attribute set to firstname*\/<\/p>\n<p>#firstname<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all elements*\/<br \/>\n*<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all p elements*\/<br \/>\np<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all h1 and p elements*\/<br \/>\nh1,p<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to p elements that are children of div elements*\/<br \/>\ndiv p<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to the p elements that are placed at the same level of a div element. p elements immediately after div elements for example*\/<br \/>\ndiv+p<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to anchor elements with target attributes*\/<br \/>\na[target]<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all anchor elements with _blank as the target*\/<br \/>\na[target=_blank]<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all elements with title attribute has the word flower*\/<br \/>\n[title~=flower]<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all elements where language attribute starts with en*\/<br \/>\n[lang|=en]<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all unvisited links*\/<br \/>\na:link<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all visited links*\/<br \/>\na:visited<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all active links*\/<br \/>\na:active<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied on anchor links when mouse over on it *\/<br \/>\na:hover<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to input elements with focus*\/<br \/>\ninput:focus<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to the first letter of all paragraphs*\/<br \/>\np:first-letter<br \/>\n{<br \/>\nfont-size:200%;<br \/>\ncolor:#8A2BE2;<br \/>\n}<\/p>\n<p>\/* the style will be applied to the first line of each p element*\/<br \/>\np:first-line<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to the first child of each p element*\/<br \/>\np:first-child<br \/>\n{<br \/>\nbackground-color:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all p elements. the text will be added before each p element*\/<br \/>\np:before<br \/>\n{<br \/>\ncontent:&#8221;Add this word before each p element: &#8220;;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all p elements. the text will be added after each p element*\/<br \/>\np:after<br \/>\n{<br \/>\ncontent:&#8221;- after p element &#8220;;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all p elements with language attribute where lang attribute starts with it*\/<br \/>\np:lang(it)<br \/>\n{<br \/>\nbackground:yellow;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all ul elements preceeded by p elements*\/<br \/>\np~ul<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>\/* the style will be applied to div elements with class attribute starts with the word test*\/<br \/>\ndiv[class^=&#8221;test&#8221;]<br \/>\n{<br \/>\nbackground:#ffff00;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all div elements whose class attribute ends with test*\/<br \/>\ndiv[class$=&#8221;test&#8221;]<br \/>\n{<br \/>\nbackground:#ffff00;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all div elements where the class attribute contains the term test anywhere*\/<br \/>\ndiv[class*=&#8221;test&#8221;]<br \/>\n{<br \/>\nbackground:#ffff00;<br \/>\n}<\/p>\n<p>\/* the style will be applied to the document root*\/<br \/>\n:root<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all empty p elements with no child and no text element*\/<br \/>\np:empty<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>\/* add this image before the current active link *\/<br \/>\n:target:before<br \/>\n{<br \/>\ncontent: url(\/images\/lamp.gif);<br \/>\n}<\/p>\n<p>\/* the style will be applied to all enabled input text element*\/<br \/>\ninput[type=&#8221;text&#8221;]:enabled<br \/>\n{<br \/>\nbackground:#ffff00;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all disabled input text element*\/<br \/>\ninput[type=&#8221;text&#8221;]:disabled<br \/>\n{<br \/>\nbackground:#dddddd;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all checked input elements*\/<br \/>\ninput:checked<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>\/* the style will be applied to all elements other than p*\/<br \/>\n:not(p)<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>\/* the style will be applied to the selected text*\/<br \/>\n::selection<br \/>\n{<br \/>\ncolor:#ff0000;<br \/>\n}<\/p>\n<p>::-moz-selection<br \/>\n{<br \/>\ncolor:#ff0000;<br \/>\n}<\/p>\n<p>p:first-of-type<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:last-of-type<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:only-of-type<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:only-child<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:nth-child(2)<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:nth-last-child(2)<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:nth-of-type(2)<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:nth-last-of-type(2)<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n}<\/p>\n<p>p:last-child<br \/>\n{<br \/>\nbackground:#ff0000;<br \/>\n} From: http:\/\/sitestree.com\/?p=113<br \/> Categories:Web Development, CSS, Root, By Sayed Ahmed<br \/>Tags:Css selector, Css<br \/> Post Data:2012-11-30 04:10:30<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\/* the style will be applied to all elements using intro for class attribute*\/ .intro { background-color:yellow; } \/* the style will be applied to the element with id attribute set to firstname*\/ #firstname { background-color:yellow; } \/* the style will be applied to all elements*\/ * { background-color:yellow; } \/* the style will be &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"http:\/\/bangla.sitestree.com\/?p=21628\">Continue reading<\/a><\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1917],"tags":[],"class_list":["post-21628","post","type-post","status-publish","format-standard","hentry","category-fromsitestree-com","item-wrap"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":68560,"url":"http:\/\/bangla.sitestree.com\/?p=68560","url_meta":{"origin":21628,"position":0},"title":"CSS Selectors: Reference #79","author":"Author-Check- Article-or-Video","date":"August 5, 2021","format":false,"excerpt":"CSS Selector Examples and Notes (check each line carefully and notice differences with other (esp. immediate) lines): (Reference: CSS: The Definitive Guide: 3rd Edition: by E. A. Mayer:) Basic Rules: The following css rules apply to the corresponding html\/xml elements\/tags (left of { ) as found anywhere in the scope\u2026","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":7626,"url":"http:\/\/bangla.sitestree.com\/?p=7626","url_meta":{"origin":21628,"position":1},"title":"\u0986\u099c \u0986\u09ae\u09bf  \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09ac\u09bf\u09b7\u09df\u09c7 \u0995\u09bf\u099b\u09c1 \u09a7\u09be\u09b0\u09a3\u09be \u09a6\u09c7\u09ac\u0964","author":"Author-Check- Article-or-Video","date":"March 28, 2015","format":false,"excerpt":"1.\u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0993\u09df\u09c7\u09ac \u09a1\u09bf\u099c\u09be\u0987\u09a8\u09c7\u09b0 \u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 \u098f\u0995\u099f\u09bf \u0997\u09c1\u09b0\u09c1\u09a4\u09cd\u09ac\u09aa\u09c2\u09b0\u09cd\u09a3 \u09ac\u09bf\u09b7\u09df\u0964\u09ad\u09be\u09b2\u09ae\u09be\u09a8\u09c7\u09b0 \u098f\u0995\u099f\u09bf \u0993\u09df\u09c7\u09ac \u09b8\u09be\u0987\u099f \u09ac\u09be\u09a8\u09be\u09a4\u09c7 \u09b9\u09b2\u09c7 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u099c\u09be\u09a8\u09be \u09a6\u09b0\u0995\u09be\u09b0\u0964\u0986\u099c \u0986\u09ae\u09bf \u0985\u09aa\u09a8\u09be\u09a6\u09c7\u09b0 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09ac\u09bf\u09b7\u09df\u09c7 \u0995\u09bf\u099b\u09c1 \u09a7\u09be\u09b0\u09a3\u09be \u09a6\u09c7\u09ac\u0964 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u099f\u09c7\u09ac\u09bf\u09b2\u0983- table { border-collapse:collapse; } table,th, td { border: 1px solid black; } \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09ac\u09cd\u09af\u09be\u0995\u0997\u09cd\u09b0\u09be\u0989\u09a8\u09cd\u09a1\u0983- 1. body {background-color:#b0c4de;} 2. h1 {background-color:#6495ed;} p {background-color:#e0ffff;} div {background-color:#b0c4de;} 3. body\u2026","rel":"","context":"In &quot;\u09b8\u09bf\u098f\u09b8\u098f\u09b8 CSS&quot;","block_context":{"text":"\u09b8\u09bf\u098f\u09b8\u098f\u09b8 CSS","link":"http:\/\/bangla.sitestree.com\/?cat=493"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6780,"url":"http:\/\/bangla.sitestree.com\/?p=6780","url_meta":{"origin":21628,"position":2},"title":"\u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 \u09ac\u09cd\u09b2\u0995 (HTML Block and Inline Elements)","author":"Author-Check- Article-or-Video","date":"March 29, 2015","format":false,"excerpt":"\u098f\u0987\u099a\u099f\u09bf \u098f\u09ae \u098f\u09b2 \u09ac\u09cd\u09b2\u0995 (HTML Block Elements) \u09a8\u09be\u09ae-\u09b6\u09b0\u09bf\u09ab\u09c1\u09b2 \u0987\u09b8\u09b2\u09be\u09ae Php Coder \u00a0 \u0989\u09a6\u09be\u09b9\u09b0\u09a3\u0983 <div style=\"background-color:black; color:white; padding:20px;\"> <h2>London<\/h2> <p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.<\/p> <\/div> \u00a0 \u09ab\u09b2\u09be\u09ab\u09b2\u0983 London London is\u2026","rel":"","context":"In &quot;\u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 HTML&quot;","block_context":{"text":"\u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 HTML","link":"http:\/\/bangla.sitestree.com\/?cat=494"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6192,"url":"http:\/\/bangla.sitestree.com\/?p=6192","url_meta":{"origin":21628,"position":3},"title":"\u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0995\u09ae\u09cd\u09ac\u09bf\u09a8\u09c7\u099f\u09b0\u09b8 (CSS Combinators)","author":"Author-Check- Article-or-Video","date":"February 8, 2015","format":false,"excerpt":"\u09b6\u09c7\u0996 \u09ae\u09be\u09b9\u09ab\u09c1\u099c\u09c1\u09b0 \u09b0\u09b9\u09ae\u09be\u09a8 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0995\u09ae\u09cd\u09ac\u09bf\u09a8\u09c7\u099f\u09b0 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0\u0997\u09c1\u09b2\u09cb\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u09b8\u09ae\u09cd\u09aa\u09b0\u09cd\u0995 \u09a8\u09bf\u09b0\u09cd\u09a6\u09c7\u09b6 \u0995\u09b0\u09c7\u0964 \u098f\u0995\u099f\u09bf \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u098f\u0995\u09be\u09a7\u09bf\u0995 \u09b8\u09bf\u09ae\u09cd\u09aa\u09b2 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u09a7\u09be\u09b0\u09a3 \u0995\u09b0\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7\u0964 \u098f\u0987 \u09b8\u09bf\u09ae\u09cd\u09aa\u09b2 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0\u0997\u09c1\u09b2\u09cb\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u0986\u09ae\u09b0\u09be \u098f\u0995\u099f\u09bf \u0995\u09ae\u09cd\u09ac\u09bf\u09a8\u09c7\u099f\u09b0 \u09af\u09cb\u0997 \u0995\u09b0\u09a4\u09c7 \u09aa\u09be\u09b0\u09bf\u0964 \u09b8\u09bf\u098f\u09b8\u098f\u09b8-\u09a5\u09cd\u09b0\u09bf'\u09a4\u09c7 \u099a\u09be\u09b0 \u09aa\u09cd\u09b0\u0995\u09be\u09b0 \u0995\u09ae\u09cd\u09ac\u09bf\u09a8\u09c7\u099f\u09b0 \u09b0\u09df\u09c7\u099b\u09c7\u0983 \u09a1\u09bf\u09b8\u09c7\u09a8\u09cd\u09a1\u09c7\u09a8\u09cd\u099f \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u099a\u09be\u0987\u09b2\u09cd\u09a1 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u0985\u09cd\u09af\u09be\u09a1\u099c\u09be\u09b8\u09c7\u09a8\u09cd\u099f \u09b8\u09bf\u09ac\u09b2\u09bf\u0982 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u099c\u09c7\u09a8\u09c7\u09b0\u09be\u09b2 \u09b8\u09bf\u09ac\u09b2\u09bf\u0982 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u00a0 \u09a1\u09bf\u09b8\u09c7\u09a8\u09cd\u09a1\u09c7\u09a8\u09cd\u099f \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u09a1\u09bf\u09b8\u09c7\u09a8\u09cd\u09a1\u09c7\u09a8\u09cd\u099f \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u098f\u0995\u099f\u09bf\u2026","rel":"","context":"In &quot;\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)&quot;","block_context":{"text":"\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)","link":"http:\/\/bangla.sitestree.com\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":67650,"url":"http:\/\/bangla.sitestree.com\/?p=67650","url_meta":{"origin":21628,"position":4},"title":"Examples: BAD CSS #CSS #Root #By Sayed Ahmed","author":"Author-Check- Article-or-Video","date":"July 26, 2021","format":false,"excerpt":"Case 1: Bad as depends on HTML Structure too much #main-nav ul li ul li div { } #content article h1:first-child { } #sidebar > div > h3 + p { } Case 2: .widget { background: yellow; border: 1px solid black; color: black; width: 50%; } #sidebar .widget {\u2026","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6160,"url":"http:\/\/bangla.sitestree.com\/?p=6160","url_meta":{"origin":21628,"position":5},"title":"\u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09ac\u09cd\u09af\u09be\u0995\u0997\u09cd\u09b0\u09be\u0989\u09a8\u09cd\u09a1 (CSS Background)","author":"Author-Check- Article-or-Video","date":"February 8, 2015","format":false,"excerpt":"CSS background properties \u09ac\u09cd\u09af\u09be\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09df element \u098f\u09b0 background effects \u09a8\u09bf\u09b0\u09cd\u09a6\u09c7\u09b6 \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af\u0964 \u09af\u09c7 CSS properties \u0997\u09c1\u09b2\u09bf background effects \u098f\u09b0 \u099c\u09a8\u09cd\u09af \u09ac\u09cd\u09af\u09be\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09df \u09a4\u09be \u09a8\u09bf\u09ae\u09cd\u09a8\u09b0\u09c1\u09aa\u0983 background-color background-image background-repeat background-attachment background-position \u00a0 Background Color \u098f\u0995\u099f\u09bf element \u098f\u09b0 background color \u09a8\u09bf\u09b0\u09cd\u09a6\u09bf\u09b7\u09cd\u099f \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af background-color property \u09ac\u09cd\u09af\u09be\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09df\u0964 \u098f\u0995\u099f\u09bf page \u098f\u09b0\u2026","rel":"","context":"In &quot;\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)&quot;","block_context":{"text":"\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)","link":"http:\/\/bangla.sitestree.com\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/21628","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=21628"}],"version-history":[{"count":0,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/21628\/revisions"}],"wp:attachment":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=21628"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=21628"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=21628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}