{"id":3934,"date":"2023-11-04T23:13:57","date_gmt":"2023-11-04T23:13:57","guid":{"rendered":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/"},"modified":"2023-11-05T05:48:26","modified_gmt":"2023-11-05T05:48:26","slug":"how-to-use-tailwind-css-for-responsive-web-design","status":"publish","type":"post","link":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/","title":{"rendered":"How to Use Tailwind CSS for Responsive Web Design"},"content":{"rendered":"

Tailwind CSS is a highly customizable utility-first CSS framework that helps you rapidly build responsive web designs. It provides an extensive set of pre-built utility classes that you can easily mix and match to create your desired layout and styles.<\/p>\n

In this tutorial, we will guide you through the process of using Tailwind CSS for responsive web design. We will cover the following topics:<\/p>\n

    \n
  1. Installation<\/a><\/li>\n
  2. Setting up a Project<\/a><\/li>\n
  3. Configuring Tailwind CSS<\/a><\/li>\n
  4. Using Utility Classes<\/a><\/li>\n
  5. Responsive Design<\/a><\/li>\n
  6. Customizing the Configuration<\/a><\/li>\n
  7. Optimizing for Production<\/a><\/li>\n<\/ol>\n

    Installation<\/h2>\n

    To get started with Tailwind CSS, you need to install it as a dependency in your project. Tailwind CSS requires Node.js and npm to be installed on your machine. If you don’t have them installed, you can download them from the official website of Node.js.<\/p>\n

    Once you have Node.js and npm installed, open a terminal or command prompt and navigate to your project directory. Run the following command to install Tailwind CSS:<\/p>\n

    npm install tailwindcss\n<\/code><\/pre>\n

    Setting up a Project<\/h2>\n

    After installing Tailwind CSS, you need to set up your project to use it. You can either create a new project or integrate Tailwind CSS into an existing project.<\/p>\n

    To create a new project from scratch, create a new directory for your project and navigate into it using the terminal or command prompt. Run the following command to generate a default tailwind.config.js<\/code> file and a postcss.config.js<\/code> file:<\/p>\n

    npx tailwindcss init -p\n<\/code><\/pre>\n

    This command initializes a new Tailwind CSS project with default configurations.<\/p>\n

    If you have an existing project, navigate into its directory and run the same command to generate the config files. It will not overwrite any existing files and will add the necessary configurations to the existing files.<\/p>\n

    Configuring Tailwind CSS<\/h2>\n

    Once you have set up your project, you can configure Tailwind CSS according to your needs. Open the tailwind.config.js<\/code> file generated in the previous step.<\/p>\n

    In this file, you can customize various aspects of Tailwind CSS, such as colors, typography, spacing, breakpoints, and more. The default configuration file provides a good starting point, but you can customize it to match your project’s design requirements.<\/p>\n

    For example, to add a new color to your project, you can add the following code snippet inside the theme<\/code> object in the configuration file:<\/p>\n

    module.exports = {\n  theme: {\n    extend: {\n      colors: {\n        'purple': '#7e57c2',\n      },\n    },\n  },\n  \/\/ ...\n}\n<\/code><\/pre>\n

    Once you have made the necessary configurations, save the file and close it.<\/p>\n

    Using Utility Classes<\/h2>\n

    One of the key features of Tailwind CSS is its extensive collection of utility classes. Utility classes are pre-defined CSS classes that provide specific styling to elements. They are designed to be easy to use and combine to create complex layouts and styles without writing custom CSS.<\/p>\n

    To use a utility class, simply add it to the desired HTML element. For example, to add some padding to a div element, use the p-4<\/code> class:<\/p>\n

    <div class=\"p-4\">\n  This div has some padding.\n<\/div>\n<\/code><\/pre>\n

    Utility classes follow a specific naming convention. Each class consists of one or more properties and their values separated by dashes. For example, the p-4<\/code> class adds 1rem (16px) padding to all sides of the element.<\/p>\n

    You can mix and match utility classes to create more complex styles. For example, to create a button with a purple background and white text, use the bg-purple text-white<\/code> classes:<\/p>\n

    <button class=\"bg-purple text-white py-2 px-4 rounded\">\n  Click me\n<\/button>\n<\/code><\/pre>\n

    The py-2<\/code> class adds 0.5rem (8px) vertical padding, the px-4<\/code> class adds 1rem (16px) horizontal padding, and the rounded<\/code> class adds a border radius of 0.25rem (4px) to the button.<\/p>\n

    Refer to the Tailwind CSS documentation for a complete list of available utility classes and their usage.<\/p>\n

    Responsive Design<\/h2>\n

    Tailwind CSS makes it easy to create responsive designs by providing utility classes for different screen sizes. You can use responsive utility classes to apply different styles to elements based on the screen size.<\/p>\n

    To make an element responsive, simply add the desired responsive utility class to it. Responsive utility classes follow a naming convention that starts with the screen size followed by a colon. For example, to hide an element on small screens, use the hidden sm:block<\/code> classes:<\/p>\n

    <div class=\"hidden sm:block\">\n  This element is hidden on small screens and visible on larger screens.\n<\/div>\n<\/code><\/pre>\n

    The hidden<\/code> class hides the element by default, and the sm:block<\/code> class makes it visible on small screens and larger.<\/p>\n

    You can also use responsive utility classes for specific properties. For example, to set the font size of a paragraph to 16px on small screens and 20px on larger screens, use the text-base sm:text-lg<\/code> classes:<\/p>\n

    <p class=\"text-base sm:text-lg\">\n  This paragraph has different font sizes on different screen sizes.\n<\/p>\n<\/code><\/pre>\n

    The text-base<\/code> class sets the font size to 1rem (16px) by default, and the sm:text-lg<\/code> class overrides it to 1.25rem (20px) on small screens and larger.<\/p>\n

    Refer to the Tailwind CSS documentation for a complete list of available responsive utility classes and their usage.<\/p>\n

    Customizing the Configuration<\/h2>\n

    Tailwind CSS allows you to fully customize its configuration to match your project’s design requirements. You can override the default configuration by modifying the tailwind.config.js<\/code> file.<\/p>\n

    For example, to change the default font family, add the following code snippet to the theme<\/code> object in the configuration file:<\/p>\n

    module.exports = {\n  theme: {\n    extend: {\n      fontFamily: {\n        'sans': ['Roboto', 'Helvetica', 'Arial', 'sans-serif'],\n      },\n    },\n  },\n  \/\/ ...\n}\n<\/code><\/pre>\n

    This code snippet adds the “Roboto” font and falls back to “Helvetica” and “Arial” if it is not available.<\/p>\n

    You can also add your custom utility classes by extending the configuration file. For example, to add a utility class called .shadow<\/code> for adding box shadows to elements, add the following code snippet to the theme<\/code> object:<\/p>\n

    module.exports = {\n  theme: {\n    extend: {\n      boxShadow: {\n        'custom': '0 0 10px rgba(0, 0, 0, 0.1)',\n      },\n    },\n  },\n  \/\/ ...\n}\n<\/code><\/pre>\n

    This code snippet adds a new boxShadow utility class called .shadow-custom<\/code> that applies a box shadow to the element.<\/p>\n

    Refer to the Tailwind CSS documentation for more information on customizing the configuration and adding custom utility classes.<\/p>\n

    Optimizing for Production<\/h2>\n

    Tailwind CSS is highly customizable and comes with a lot of utility classes. However, using all the utility classes can result in a large CSS file, which may affect the performance of your website.<\/p>\n

    To optimize Tailwind CSS for production, you can purge unused styles from the CSS file. This process removes any unused utility classes from the final production CSS file, resulting in a smaller file size.<\/p>\n

    To enable the purging of unused styles, open the tailwind.config.js<\/code> file and locate the purge<\/code> property inside the module.exports<\/code> object. Uncomment the property and set it to the path(s) of your HTML and JavaScript files:<\/p>\n

    module.exports = {\n  purge: ['.\/index.html', '.\/src\/**\/*.js'],\n  \/\/ ...\n}\n<\/code><\/pre>\n

    Make sure to include all the relevant paths to your HTML and JavaScript files.<\/p>\n

    Once you have enabled purging, build your project using the following command:<\/p>\n

    npm run build\n<\/code><\/pre>\n

    This command generates a production-ready CSS file with the unused styles purged.<\/p>\n

    Remember to run the build command whenever you make changes to your Tailwind CSS configurations or utilities.<\/p>\n

    Conclusion<\/h2>\n

    In this tutorial, we have learned how to use Tailwind CSS for responsive web design. We explored the installation and setup process, configuring Tailwind CSS, using utility classes, creating responsive designs, customizing the configuration, and optimizing for production.<\/p>\n

    Tailwind CSS allows you to rapidly build responsive web designs by leveraging its extensive collection of utility classes. By following the steps outlined in this tutorial, you can effectively use Tailwind CSS to create beautiful and responsive web layouts.<\/p>\n","protected":false},"excerpt":{"rendered":"

    Tailwind CSS is a highly customizable utility-first CSS framework that helps you rapidly build responsive web designs. It provides an extensive set of pre-built utility classes that you can easily mix and match to create your desired layout and styles. In this tutorial, we will guide you through the process Continue Reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[428,431,432,429,433,430,434,435,427,36,49,426],"yoast_head":"\nHow to Use Tailwind CSS for Responsive Web Design - Pantherax Blogs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Tailwind CSS for Responsive Web Design\" \/>\n<meta property=\"og:description\" content=\"Tailwind CSS is a highly customizable utility-first CSS framework that helps you rapidly build responsive web designs. It provides an extensive set of pre-built utility classes that you can easily mix and match to create your desired layout and styles. In this tutorial, we will guide you through the process Continue Reading\" \/>\n<meta property=\"og:url\" content=\"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/\" \/>\n<meta property=\"og:site_name\" content=\"Pantherax Blogs\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-04T23:13:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-05T05:48:26+00:00\" \/>\n<meta name=\"author\" content=\"Panther\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Panther\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t \"@context\": \"https:\/\/schema.org\",\n\t \"@graph\": [\n\t {\n\t \"@type\": \"Article\",\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Panther\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\"\n\t },\n\t \"headline\": \"How to Use Tailwind CSS for Responsive Web Design\",\n\t \"datePublished\": \"2023-11-04T23:13:57+00:00\",\n\t \"dateModified\": \"2023-11-05T05:48:26+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/\"\n\t },\n\t \"wordCount\": 1121,\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"keywords\": [\n\t \"\\\"beginner's guide\\\"\",\n\t \"\\\"css\\\"\",\n\t \"\\\"flexbox\\\"\",\n\t \"\\\"frontend\\\"\",\n\t \"\\\"grid layout\\\"\",\n\t \"\\\"html\\\"\",\n\t \"\\\"media queries\\\"\",\n\t \"\\\"responsive images\\\"]\",\n\t \"\\\"responsive web design\\\"\",\n\t \"\\\"tutorial\\\"]\",\n\t \"\\\"Web development\\\"\",\n\t \"[\\\"tailwind css\\\"\"\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/\",\n\t \"url\": \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/\",\n\t \"name\": \"How to Use Tailwind CSS for Responsive Web Design - Pantherax Blogs\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#website\"\n\t },\n\t \"datePublished\": \"2023-11-04T23:13:57+00:00\",\n\t \"dateModified\": \"2023-11-05T05:48:26+00:00\",\n\t \"breadcrumb\": {\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/#breadcrumb\"\n\t },\n\t \"inLanguage\": \"en-US\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"ReadAction\",\n\t \"target\": [\n\t \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/#breadcrumb\",\n\t \"itemListElement\": [\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 1,\n\t \"name\": \"Home\",\n\t \"item\": \"http:\/\/localhost:10003\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 2,\n\t \"name\": \"How to Use Tailwind CSS for Responsive Web Design\"\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebSite\",\n\t \"@id\": \"http:\/\/localhost:10003\/#website\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"description\": \"\",\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"SearchAction\",\n\t \"target\": {\n\t \"@type\": \"EntryPoint\",\n\t \"urlTemplate\": \"http:\/\/localhost:10003\/?s={search_term_string}\"\n\t },\n\t \"query-input\": \"required name=search_term_string\"\n\t }\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"Organization\",\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"logo\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\",\n\t \"url\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"contentUrl\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"width\": 1024,\n\t \"height\": 1024,\n\t \"caption\": \"Pantherax Blogs\"\n\t },\n\t \"image\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\"\n\t }\n\t },\n\t {\n\t \"@type\": \"Person\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\",\n\t \"name\": \"Panther\",\n\t \"image\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/image\/\",\n\t \"url\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"contentUrl\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"caption\": \"Panther\"\n\t },\n\t \"sameAs\": [\n\t \"http:\/\/localhost:10003\"\n\t ],\n\t \"url\": \"http:\/\/localhost:10003\/author\/pepethefrog\/\"\n\t }\n\t ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use Tailwind CSS for Responsive Web Design - Pantherax Blogs","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":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Tailwind CSS for Responsive Web Design","og_description":"Tailwind CSS is a highly customizable utility-first CSS framework that helps you rapidly build responsive web designs. It provides an extensive set of pre-built utility classes that you can easily mix and match to create your desired layout and styles. In this tutorial, we will guide you through the process Continue Reading","og_url":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/","og_site_name":"Pantherax Blogs","article_published_time":"2023-11-04T23:13:57+00:00","article_modified_time":"2023-11-05T05:48:26+00:00","author":"Panther","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Panther","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/#article","isPartOf":{"@id":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/"},"author":{"name":"Panther","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7"},"headline":"How to Use Tailwind CSS for Responsive Web Design","datePublished":"2023-11-04T23:13:57+00:00","dateModified":"2023-11-05T05:48:26+00:00","mainEntityOfPage":{"@id":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/"},"wordCount":1121,"publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"keywords":["\"beginner's guide\"","\"css\"","\"flexbox\"","\"frontend\"","\"grid layout\"","\"html\"","\"media queries\"","\"responsive images\"]","\"responsive web design\"","\"tutorial\"]","\"Web development\"","[\"tailwind css\""],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/","url":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/","name":"How to Use Tailwind CSS for Responsive Web Design - Pantherax Blogs","isPartOf":{"@id":"http:\/\/localhost:10003\/#website"},"datePublished":"2023-11-04T23:13:57+00:00","dateModified":"2023-11-05T05:48:26+00:00","breadcrumb":{"@id":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/localhost:10003\/how-to-use-tailwind-css-for-responsive-web-design\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/localhost:10003\/"},{"@type":"ListItem","position":2,"name":"How to Use Tailwind CSS for Responsive Web Design"}]},{"@type":"WebSite","@id":"http:\/\/localhost:10003\/#website","url":"http:\/\/localhost:10003\/","name":"Pantherax Blogs","description":"","publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/localhost:10003\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/localhost:10003\/#organization","name":"Pantherax Blogs","url":"http:\/\/localhost:10003\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/","url":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","contentUrl":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","width":1024,"height":1024,"caption":"Pantherax Blogs"},"image":{"@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7","name":"Panther","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/person\/image\/","url":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","contentUrl":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","caption":"Panther"},"sameAs":["http:\/\/localhost:10003"],"url":"http:\/\/localhost:10003\/author\/pepethefrog\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3934"}],"collection":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/comments?post=3934"}],"version-history":[{"count":1,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3934\/revisions"}],"predecessor-version":[{"id":4570,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3934\/revisions\/4570"}],"wp:attachment":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/media?parent=3934"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/categories?post=3934"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/tags?post=3934"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}