{"id":26674,"date":"2022-12-19T08:47:57","date_gmt":"2022-12-19T03:17:57","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/"},"modified":"2022-12-19T08:47:57","modified_gmt":"2022-12-19T03:17:57","slug":"solved-how-to-make-a-small-node-like-circle-in-css","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/","title":{"rendered":"[Solved] How to make a small, node-like circle in CSS"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-55194356\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"55194356\" data-parentid=\"55187746\" data-score=\"1\" 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<p>I got you fam.<\/p>\n<p>1) Let&#8217;s create some CSS circles. <em>Hella<\/em> easy with <code>border-radius<\/code>.<\/p>\n<pre><code>&lt;div class=\"circle\"&gt;&lt;\/div&gt;\n\n.circle {\n    border: 5px solid black;\n    border-radius: 50%;\n    width: 100px;\n    height: 100px;\n}\n<\/code><\/pre>\n<p><strong>Look at this gorgeous circle!<\/strong><\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png\" alt=\"enter image description here\"><\/a><\/p>\n<p>Now we need some child nodes. <strong><em>MOAR CIRCLES<\/em><\/strong>! Also, we should start thinking about positionin&#8217; these circles. <code>position: absolute<\/code>? <em>Pssh<\/em>, You know it!<\/p>\n<pre><code>&lt;div class=\"circle\"&gt;&lt;\/div&gt;\n&lt;div class=\"circle circle-small right-top\"&gt;&lt;\/div&gt;\n&lt;div class=\"circle circle-small right-bottom\"&gt;&lt;\/div&gt;\n\n.circle {\n    border: 5px solid black;\n    border-radius: 50%;\n    position: absolute;\n    top: 100px;\n    bottom: 100px;\n    width: 100px;\n    height: 100px;\n}\n\n.circle-small {\n    border: 5px solid black;\n    border-radius: 50%;\n    width: 50px;\n    height: 50px;\n}\n\n.right-top {\n    top: 50px;\n    left: 250px;\n}\n.right-bottom {\n    top: 200px;\n    left: 250px;\n}\n<\/code><\/pre>\n<p><strong>LOOK, We&#8217;re basically there!<\/strong><\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/1671419877_893_Solved-How-to-make-a-small-node-like-circle-in-CSS.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/1671419877_893_Solved-How-to-make-a-small-node-like-circle-in-CSS.png\" alt=\"enter image description here\"><\/a><\/p>\n<p>So, the edges? How do we connect those?!? WELL, we&#8217;re tagged <strong>CSS<\/strong> and <strong>HTML<\/strong>, SO we&#8217;re gonna do it the painstakingly way: GENERATED CONTENT!<\/p>\n<p>Tangent: You can do some amazing stuff with a single div: <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/a.singlediv.com\/\">https:\/\/a.singlediv.com\/<\/a><\/p>\n<p>I&#8217;m going <code>::before<\/code>, but <code>::after<\/code> totally works.<\/p>\n<pre><code>.right-top::before {\n    border-top: 5px solid black;\n    content: '';\n    display: block;\n    height: 100px;\n    width: 65px;\n    position: absolute;\n    left: -36px;\n    top: 46px;\n    transform: rotate(-30deg);\n}\n<\/code><\/pre>\n<p>Let&#8217;s break these down line by line!<\/p>\n<ul>\n<li><code>border-top: 5px solid black;<\/code> &#8211; Our circle has a 5px border. I like turtles, err &#8211; consistency.<\/li>\n<li><code>content: '';<\/code> &#8211; Dur.<\/li>\n<li><code>display: block;<\/code> &#8211; Cause, we wanna position it later!<\/li>\n<li><code>height: 100px;<\/code> &#8211; One of four values I tweaked around with &#8217;til it looked good (thanks Chrome Dev Tools!)<\/li>\n<li><code>width: 65px;<\/code> &#8211; ^^^ ditto<\/li>\n<li><code>position: absolute;<\/code> &#8211; Yup<\/li>\n<li><code>left: -36px;<\/code> &#8211; So our border-top is connected to the circles<\/li>\n<li><code>top: 46px;<\/code> &#8211; Same as <code>left<\/code><\/li>\n<li><code>transform: rotate(-30deg);<\/code> &#8211; etc etc<\/li>\n<\/ul>\n<p><strong>DRUMROLL<\/strong><\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/1671419877_196_Solved-How-to-make-a-small-node-like-circle-in-CSS.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/1671419877_196_Solved-How-to-make-a-small-node-like-circle-in-CSS.png\" alt=\"enter image description here\"><\/a><\/p>\n<p><em>OH DANG!<\/em> NEXT PLS:<\/p>\n<pre><code>.right-bottom::before {\n    content: '';\n    display: block;\n    border-top: 5px solid black;\n    width: 65px;\n    height: 100px;\n    position: absolute;\n    left: -86px;\n    transform: rotate(30deg);\n    top: -14px;\n}\n<\/code><\/pre>\n<p>It&#8217;s basically the same as <code>right-top::before<\/code>, except we tweaked the offsets <code>left\/top\/transform<\/code> to get&#8230;.this:<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/1671419877_13_Solved-How-to-make-a-small-node-like-circle-in-CSS.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/1671419877_13_Solved-How-to-make-a-small-node-like-circle-in-CSS.png\" alt=\"enter image description here\"><\/a><\/p>\n<p><strong>BOOYA!<\/strong><\/p>\n<p>Anyway, I would go with SVG. Or, <code>&lt;canvas&gt;<\/code>.<\/p>\n<p>Good luck.<\/p>\n<p>OH, here&#8217;s the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jsfiddle.net\/qcb4ay0d\/\">fiddle<\/a> where screenshots came from.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to make a small, node-like circle in CSS <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] I got you fam. 1) Let&#8217;s create some CSS circles. Hella easy with border-radius. &lt;div class=&#8221;circle&#8221;&gt;&lt;\/div&gt; .circle { border: 5px solid black; border-radius: 50%; width: 100px; height: 100px; } Look at this gorgeous circle! Now we need some child nodes. MOAR CIRCLES! Also, we should start thinking about positionin&#8217; these circles. position: absolute? Pssh, &#8230; <a title=\"[Solved] How to make a small, node-like circle in CSS\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/\" aria-label=\"More on [Solved] How to make a small, node-like circle in CSS\">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":[464,346],"class_list":["post-26674","post","type-post","status-publish","format-standard","hentry","category-solved","tag-css","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 make a small, node-like circle in CSS - 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-make-a-small-node-like-circle-in-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to make a small, node-like circle in CSS - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] I got you fam. 1) Let&#8217;s create some CSS circles. Hella easy with border-radius. &lt;div class=&quot;circle&quot;&gt;&lt;\/div&gt; .circle { border: 5px solid black; border-radius: 50%; width: 100px; height: 100px; } Look at this gorgeous circle! Now we need some child nodes. MOAR CIRCLES! Also, we should start thinking about positionin&#8217; these circles. position: absolute? Pssh, ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-19T03:17:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png\" \/>\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-make-a-small-node-like-circle-in-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to make a small, node-like circle in CSS\",\"datePublished\":\"2022-12-19T03:17:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/\"},\"wordCount\":217,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png\",\"keywords\":[\"css\",\"html\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/\",\"name\":\"[Solved] How to make a small, node-like circle in CSS - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png\",\"datePublished\":\"2022-12-19T03:17:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to make a small, node-like circle in CSS\"}]},{\"@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 make a small, node-like circle in CSS - 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-make-a-small-node-like-circle-in-css\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to make a small, node-like circle in CSS - JassWeb","og_description":"[ad_1] I got you fam. 1) Let&#8217;s create some CSS circles. Hella easy with border-radius. &lt;div class=\"circle\"&gt;&lt;\/div&gt; .circle { border: 5px solid black; border-radius: 50%; width: 100px; height: 100px; } Look at this gorgeous circle! Now we need some child nodes. MOAR CIRCLES! Also, we should start thinking about positionin&#8217; these circles. position: absolute? Pssh, ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/","og_site_name":"JassWeb","article_published_time":"2022-12-19T03:17:57+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png","type":"","width":"","height":""}],"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-make-a-small-node-like-circle-in-css\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to make a small, node-like circle in CSS","datePublished":"2022-12-19T03:17:57+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/"},"wordCount":217,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png","keywords":["css","html"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/","name":"[Solved] How to make a small, node-like circle in CSS - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png","datePublished":"2022-12-19T03:17:57+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/12\/Solved-How-to-make-a-small-node-like-circle-in-CSS.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-make-a-small-node-like-circle-in-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to make a small, node-like circle in CSS"}]},{"@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\/26674","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=26674"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/26674\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=26674"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=26674"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=26674"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}