{"id":833,"date":"2025-06-06T17:51:20","date_gmt":"2025-06-06T09:51:20","guid":{"rendered":"https:\/\/witlab.ph\/blog\/?p=833"},"modified":"2025-06-06T18:04:41","modified_gmt":"2025-06-06T10:04:41","slug":"fluid-typography-with-clamp","status":"publish","type":"post","link":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/","title":{"rendered":"Fluid Typography with clamp()"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p>Ever noticed how some websites are super easy to read on any device\u2014whether it\u2019s a phone, tablet, or computer\u2014while others have text that\u2019s either too small or way too big? The secret is Fluid Typography. It\u2019s a smart CSS technique that automatically resizes text based on the screen size.<\/p>\n\n\n\n<p>At WIT Lab, we use this method in our designs to make sure everything looks clean and readable\u2014no matter what device you&#8217;re on. In this guide, I\u2019ll show you how to make your text scale beautifully with just one line of CSS\u2014and no need for media queries!<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>What is Fluid Typography?<\/strong><\/h4>\n\n\n\n<p>Fluid typography is a way to make text automatically resize to fit any screen. Instead of changing font size only at certain screen widths (like with media queries), fluid typography smoothly adjusts the text size as the screen gets bigger or smaller. This makes reading easier and more comfortable on all devices\u2014whether you&#8217;re using a phone, tablet, or desktop.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Why Fluid Typography Matters<\/strong><\/h4>\n\n\n\n<p>   1. Better Responsiveness \u2013 Text adapts naturally to any screen size, from mobile to desktop.<\/p>\n\n\n\n<p>   2. Improved Readability \u2013 Text is appropriately sized across all devices, avoiding extremes in size.<\/p>\n\n\n\n<p>   3. Reduced Media Queries \u2013 Fewer breakpoints mean cleaner, more maintainable CSS.<\/p>\n\n\n\n<p>   4. Modern Web Standards \u2013 Aligns with flexible, dynamic layouts in today\u2019s web design.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>What is a clamp?<\/strong><\/h4>\n\n\n\n<p>The clamp() function is a CSS method that allows you to set a minimum, preferred, and maximum value for a property like font-size. It ensures that the value stays within the specified range while smoothly scaling in between.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<pre class=\"brush:css\"> font-size: clamp(min, preferred, max);<\/pre>\n\n\n\n<p>\u25e6 min \u2013 The smallest allowed value (e.g., 1rem).<\/p>\n\n\n\n<p>\u25e6 preferred \u2013 The fluid scaling value (e.g., 2.5vw).<\/p>\n\n\n\n<p>\u25e6 max \u2013 The largest allowed value (e.g., 2rem).<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>How to Use clamp() for Fluid Typography<\/strong><\/h4>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>1.Calculate Preferred Value : <\/strong>The preferred value is usually a viewport-relative unit (vw). For example:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><\/ul>\n\n\n\n<p>\u25e6 1vw = 1% of the viewport width.<\/p>\n\n\n\n<p>\u25e6 2.5vw scales with screen width.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>2. Calculating Fluid Value:<\/strong>  A common formula for fluid typography is:<\/p>\n\n\n\n<p>This means:<\/p>\n\n\n\n<pre class=\"brush:css\">font-size: clamp(1rem, 2.5vw, 2rem);<\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><\/ul>\n\n\n\n<p>\u25e6 On small screens, the font size cannot be set below 1rem.<\/p>\n\n\n\n<p>\u25e6 On large screens, it won\u2019t exceed 2rem.<\/p>\n\n\n\n<p>\u25e6 In between, it scales with 2.5vw.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>3. Using Relative Units (Rem) for Better Accessibility: <\/strong>Using rem ensures font sizes respect user browser settings (e.g., zoom preferences).<\/p>\n\n\n\n<p><strong>4. Clamp Calculator (Reference): <\/strong>Tools like Fluid Typography Calculator help generate clamp() values based on min\/max font sizes and viewport widths. <\/p>\n\n\n\n<p><strong>Implementing clamp() in CSS<\/strong><\/p>\n\n\n\n<pre class=\"brush:css\">\nh1 {\n  font-size: clamp(1.5rem, 4vw, 3rem);\n}\n\np {\n  font-size: clamp(1rem, 2vw, 1.5rem);\n}\n<\/pre>\n\n\n\n<ul class=\"wp-block-list\"><\/ul>\n\n\n\n<p>\u25e6 On mobile (320px), h1 stays at 1.5rem.<\/p>\n\n\n\n<p>\u25e6 On desktop (1200px), h1 caps at 3rem.<\/p>\n\n\n\n<p>\u25e6 In between, it scales fluidly.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>One Big Advantage of Using clamp()<\/strong> <\/p>\n\n\n\n<p>No More Breakpoint Jumps!<br>Unlike media queries, which cause sudden size changes at fixed widths, clamp() provides smooth transitions, making your typography feel more natural and polished.<\/p>\n\n\n\n<p><strong>Conclusion<\/strong><br>Fluid typography with clamp() is a game-changer for responsive design. Rather than manually adjusting font sizes across multiple breakpoints, you can let CSS dynamically scale text for any screen.<\/p>\n\n\n\n<p>Whether you&#8217;re building marketing sites or complex web apps, this technique offers a robust foundation for responsive typography, saving time and ensuring consistency.<\/p>\n\n\n\n<p>Hope you found this guide helpful!\ud83d\ude0a Stay tuned for more blogs on modern web development.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ever noticed how some websites are super easy to read on any device\u2014whether it\u2019s a phone, tablet, or computer\u2014while others have text that\u2019s either too small or way too big? The secret is Fluid Typography. It\u2019s a smart CSS technique that automatically resizes text based on the screen size. At WIT Lab, we use this [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":853,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-833","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-design"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fluid Typography with clamp() - WIT LAB %<\/title>\n<meta name=\"description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fluid Typography with clamp() - WIT LAB %\" \/>\n<meta property=\"og:description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/\" \/>\n<meta property=\"og:site_name\" content=\"WIT LAB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-06T09:51:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-06T10:04:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"366\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kyaw Soe Naing\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kyaw Soe Naing\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/\"},\"author\":{\"name\":\"Kyaw Soe Naing\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/88d7e5a16bc4e4d48dce42488c9480da\"},\"headline\":\"Fluid Typography with clamp()\",\"datePublished\":\"2025-06-06T09:51:20+00:00\",\"dateModified\":\"2025-06-06T10:04:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/\"},\"wordCount\":525,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg\",\"articleSection\":[\"Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/\",\"url\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/\",\"name\":\"Fluid Typography with clamp() - WIT LAB %\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg\",\"datePublished\":\"2025-06-06T09:51:20+00:00\",\"dateModified\":\"2025-06-06T10:04:41+00:00\",\"description\":\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\",\"breadcrumb\":{\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg\",\"width\":700,\"height\":366},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/witlab.ph\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fluid Typography with clamp()\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/witlab.ph\/blog\/#website\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"name\":\"WIT LAB\",\"description\":\"Web Development\",\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"alternateName\":\"WIT LAB INC\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/witlab.ph\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\",\"name\":\"WIT LAB INC\",\"alternateName\":\"Spiceworks (Japan)\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"width\":681,\"height\":616,\"caption\":\"WIT LAB INC\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/88d7e5a16bc4e4d48dce42488c9480da\",\"name\":\"Kyaw Soe Naing\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c4bd35fb5075c0355623ae70b270c3b9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c4bd35fb5075c0355623ae70b270c3b9?s=96&d=mm&r=g\",\"caption\":\"Kyaw Soe Naing\"},\"url\":\"https:\/\/witlab.ph\/blog\/author\/kyawsoenaing\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fluid Typography with clamp() - WIT LAB %","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","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:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/","og_locale":"en_US","og_type":"article","og_title":"Fluid Typography with clamp() - WIT LAB %","og_description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","og_url":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/","og_site_name":"WIT LAB","article_publisher":"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/","article_published_time":"2025-06-06T09:51:20+00:00","article_modified_time":"2025-06-06T10:04:41+00:00","og_image":[{"width":700,"height":366,"url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg","type":"image\/jpeg"}],"author":"Kyaw Soe Naing","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kyaw Soe Naing","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#article","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/"},"author":{"name":"Kyaw Soe Naing","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/88d7e5a16bc4e4d48dce42488c9480da"},"headline":"Fluid Typography with clamp()","datePublished":"2025-06-06T09:51:20+00:00","dateModified":"2025-06-06T10:04:41+00:00","mainEntityOfPage":{"@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/"},"wordCount":525,"commentCount":0,"publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"image":{"@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg","articleSection":["Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/","url":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/","name":"Fluid Typography with clamp() - WIT LAB %","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage"},"image":{"@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg","datePublished":"2025-06-06T09:51:20+00:00","dateModified":"2025-06-06T10:04:41+00:00","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","breadcrumb":{"@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#primaryimage","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/06\/cover_fluid_typography.jpg","width":700,"height":366},{"@type":"BreadcrumbList","@id":"https:\/\/witlab.ph\/blog\/fluid-typography-with-clamp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/witlab.ph\/blog\/"},{"@type":"ListItem","position":2,"name":"Fluid Typography with clamp()"}]},{"@type":"WebSite","@id":"https:\/\/witlab.ph\/blog\/#website","url":"https:\/\/witlab.ph\/blog\/","name":"WIT LAB","description":"Web Development","publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"alternateName":"WIT LAB INC","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/witlab.ph\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/witlab.ph\/blog\/#organization","name":"WIT LAB INC","alternateName":"Spiceworks (Japan)","url":"https:\/\/witlab.ph\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","width":681,"height":616,"caption":"WIT LAB INC"},"image":{"@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/"]},{"@type":"Person","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/88d7e5a16bc4e4d48dce42488c9480da","name":"Kyaw Soe Naing","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c4bd35fb5075c0355623ae70b270c3b9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c4bd35fb5075c0355623ae70b270c3b9?s=96&d=mm&r=g","caption":"Kyaw Soe Naing"},"url":"https:\/\/witlab.ph\/blog\/author\/kyawsoenaing\/"}]}},"_links":{"self":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/833"}],"collection":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/comments?post=833"}],"version-history":[{"count":22,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/833\/revisions"}],"predecessor-version":[{"id":860,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/833\/revisions\/860"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media\/853"}],"wp:attachment":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media?parent=833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/categories?post=833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/tags?post=833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}