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

Bootstrap is a popular front-end framework for building responsive websites and web applications. With Bootstrap, you can easily create modern and responsive designs that work on all devices and screen sizes. In this tutorial, we will explore how to use Bootstrap 5 for responsive web design.<\/p>\n

What is Responsive Web Design?<\/h2>\n

Responsive web design is an approach to web design that makes web pages render well on a variety of devices and window or screen sizes. With responsive design, your website adapts and scales its layout and content to fit different devices, such as desktops, tablets, and mobile phones.<\/p>\n

Bootstrap comes with a set of CSS classes and JavaScript plugins that make it easy to build responsive designs. You can use Bootstrap to create a responsive navigation menu, grid system, image carousels, forms, and much more.<\/p>\n

Getting Started<\/h2>\n

To get started with Bootstrap 5, you have a few options:<\/p>\n

Option 1: Download Bootstrap<\/h3>\n

You can download Bootstrap from the official website at getbootstrap.com<\/a>. Once downloaded, extract the zip file and include the necessary CSS and JavaScript files in your project.<\/p>\n

Option 2: Use a CDN<\/h3>\n

Alternatively, you can use a Content Delivery Network (CDN) to include Bootstrap in your project. For example, you can include the following links in your HTML file:<\/p>\n

<!-- CSS -->\n<link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.0\/dist\/css\/bootstrap.min.css\">\n\n<!-- JavaScript -->\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.0\/dist\/js\/bootstrap.min.js\"><\/script>\n<\/code><\/pre>\n

Setting Up a Basic Web Page<\/h2>\n

To demonstrate Bootstrap’s responsive features, let’s start by setting up a basic web page with a responsive navigation menu and a responsive grid system.<\/p>\n

Create an HTML file and include the following code:<\/p>\n

<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Bootstrap Responsive Website<\/title>\n  <link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.0\/dist\/css\/bootstrap.min.css\">\n<\/head>\n<body>\n\n<!-- Navigation Menu -->\n<nav class=\"navbar navbar-expand-lg navbar-light bg-light\">\n  <div class=\"container\">\n    <a class=\"navbar-brand\" href=\"#\">Logo<\/a>\n    <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNav\" aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n      <span class=\"navbar-toggler-icon\"><\/span>\n    <\/button>\n    <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n      <ul class=\"navbar-nav\">\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">Home<\/a>\n        <\/li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">About<\/a>\n        <\/li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">Services<\/a>\n        <\/li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">Contact<\/a>\n        <\/li>\n      <\/ul>\n    <\/div>\n  <\/div>\n<\/nav>\n\n<!-- Content -->\n<div class=\"container mt-5\">\n  <h1>Welcome to My Website<\/h1>\n  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer sed nisi id risus tincidunt fringilla. Fusce posuere ligula in turpis porta volutpat. Mauris porttitor nisl a justo finibus, sit amet euismod quam cursus.<\/p>\n<\/div>\n\n<\/body>\n<\/html>\n<\/code><\/pre>\n

Save the file with a .html<\/code> extension and open it in a web browser. You should see a responsive navigation menu at the top and some content below it.<\/p>\n

Making the Navigation Menu Responsive<\/h2>\n

Bootstrap provides a responsive navigation menu component that collapses into a hamburger menu on small screens. To make our navigation menu responsive, we need to add a few Bootstrap classes and JavaScript.<\/p>\n

Update the navigation menu code as follows:<\/p>\n

<!-- Navigation Menu -->\n<nav class=\"navbar navbar-expand-lg navbar-light bg-light\">\n  <div class=\"container\">\n    <a class=\"navbar-brand\" href=\"#\">Logo<\/a>\n    <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNav\" aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n      <span class=\"navbar-toggler-icon\"><\/span>\n    <\/button>\n    <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n      <ul class=\"navbar-nav\">\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">Home<\/a>\n        <\/li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">About<\/a>\n        <\/li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">Services<\/a>\n        <\/li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"#\">Contact<\/a>\n        <\/li>\n      <\/ul>\n    <\/div>\n  <\/div>\n<\/nav>\n<\/code><\/pre>\n

In the code above, we added the navbar<\/code> class to the nav<\/code> element to style it as a navigation bar. The navbar-expand-lg<\/code> class indicates that the navigation bar should collapse into a hamburger menu on screens smaller than the lg<\/code> breakpoint (992px by default). The navbar-light bg-light<\/code> classes set the background color of the navigation bar to light gray.<\/p>\n

We also added a button with the navbar-toggler<\/code> class and a hamburger icon. The data-bs-toggle<\/code> and data-bs-target<\/code> attributes enable the collapse behavior. When the button is clicked, it toggles the visibility of the collapse content with the specified id<\/code>.<\/p>\n

Creating a Responsive Grid System<\/h2>\n

Bootstrap comes with a powerful grid system that allows you to create responsive layouts. The grid system is based on a 12-column layout, and you can use predefined classes to control the width of your content.<\/p>\n

Let’s create a responsive grid system for our content. Update the code inside the container<\/code> div as follows:<\/p>\n

<!-- Content -->\n<div class=\"container mt-5\">\n  <div class=\"row\">\n    <div class=\"col-md-6\">\n      <h1>Welcome to My Website<\/h1>\n      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer sed nisi id risus tincidunt fringilla. Fusce posuere ligula in turpis porta volutpat. Mauris porttitor nisl a justo finibus, sit amet euismod quam cursus.<\/p>\n    <\/div>\n    <div class=\"col-md-6\">\n      <img src=\"image.jpg\" alt=\"Image\" class=\"img-fluid\">\n    <\/div>\n  <\/div>\n<\/div>\n<\/code><\/pre>\n

In the code above, we added a row<\/code> class to create a row for our grid content. Inside the row, we added two col-md-6<\/code> classes to create two columns with equal width on screens larger than the md<\/code> breakpoint (768px by default). The col-md-6<\/code> class sets the width of each column to 50% of the container width.<\/p>\n

We also added an img-fluid<\/code> class to the img<\/code> element to make the image responsive. The img-fluid<\/code> class ensures that the image scales properly on different devices and screen sizes.<\/p>\n

Testing the Responsive Design<\/h2>\n

Save the HTML file and open it in a web browser. Resize the browser window to see how the responsive design adapts to different screen sizes.<\/p>\n

On small screens, you should see the navigation menu collapse into a hamburger menu. When you click the hamburger menu, the navigation links should expand and collapse.<\/p>\n

On larger screens, you should see the content displayed in two columns. As you resize the window, the content will reflow to a single column when the screen size becomes smaller than the md<\/code> breakpoint.<\/p>\n

Conclusion<\/h2>\n

In this tutorial, you learned how to use Bootstrap 5 for responsive web design. You learned how to include Bootstrap in your project, set up a basic web page, make the navigation menu responsive, and create a responsive grid system. With Bootstrap, you can easily create modern and responsive designs that work on all devices and screen sizes.<\/p>\n","protected":false},"excerpt":{"rendered":"

Bootstrap is a popular front-end framework for building responsive websites and web applications. With Bootstrap, you can easily create modern and responsive designs that work on all devices and screen sizes. In this tutorial, we will explore how to use Bootstrap 5 for responsive web design. What is Responsive Web 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":[431,50,430,427,471,49,237,470],"yoast_head":"\nHow to Use Bootstrap 5 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-bootstrap-5-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 Bootstrap 5 for Responsive Web Design\" \/>\n<meta property=\"og:description\" content=\"Bootstrap is a popular front-end framework for building responsive websites and web applications. With Bootstrap, you can easily create modern and responsive designs that work on all devices and screen sizes. In this tutorial, we will explore how to use Bootstrap 5 for responsive web design. What is Responsive Web Continue Reading\" \/>\n<meta property=\"og:url\" content=\"http:\/\/localhost:10003\/how-to-use-bootstrap-5-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-bootstrap-5-for-responsive-web-design\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-bootstrap-5-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 Bootstrap 5 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-bootstrap-5-for-responsive-web-design\/\"\n\t },\n\t \"wordCount\": 705,\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"keywords\": [\n\t \"\\\"css\\\"\",\n\t \"\\\"Front-end development\\\"]\",\n\t \"\\\"html\\\"\",\n\t \"\\\"responsive web design\\\"\",\n\t \"\\\"Web Design\\\"\",\n\t \"\\\"Web development\\\"\",\n\t \"\\\"website development\\\"\",\n\t \"[\\\"Bootstrap 5\\\"\"\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-bootstrap-5-for-responsive-web-design\/\",\n\t \"url\": \"http:\/\/localhost:10003\/how-to-use-bootstrap-5-for-responsive-web-design\/\",\n\t \"name\": \"How to Use Bootstrap 5 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-bootstrap-5-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-bootstrap-5-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-bootstrap-5-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 Bootstrap 5 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 Bootstrap 5 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-bootstrap-5-for-responsive-web-design\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Bootstrap 5 for Responsive Web Design","og_description":"Bootstrap is a popular front-end framework for building responsive websites and web applications. With Bootstrap, you can easily create modern and responsive designs that work on all devices and screen sizes. In this tutorial, we will explore how to use Bootstrap 5 for responsive web design. What is Responsive Web Continue Reading","og_url":"http:\/\/localhost:10003\/how-to-use-bootstrap-5-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-bootstrap-5-for-responsive-web-design\/#article","isPartOf":{"@id":"http:\/\/localhost:10003\/how-to-use-bootstrap-5-for-responsive-web-design\/"},"author":{"name":"Panther","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7"},"headline":"How to Use Bootstrap 5 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-bootstrap-5-for-responsive-web-design\/"},"wordCount":705,"publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"keywords":["\"css\"","\"Front-end development\"]","\"html\"","\"responsive web design\"","\"Web Design\"","\"Web development\"","\"website development\"","[\"Bootstrap 5\""],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/localhost:10003\/how-to-use-bootstrap-5-for-responsive-web-design\/","url":"http:\/\/localhost:10003\/how-to-use-bootstrap-5-for-responsive-web-design\/","name":"How to Use Bootstrap 5 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-bootstrap-5-for-responsive-web-design\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/localhost:10003\/how-to-use-bootstrap-5-for-responsive-web-design\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/localhost:10003\/how-to-use-bootstrap-5-for-responsive-web-design\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/localhost:10003\/"},{"@type":"ListItem","position":2,"name":"How to Use Bootstrap 5 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\/3942"}],"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=3942"}],"version-history":[{"count":1,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3942\/revisions"}],"predecessor-version":[{"id":4578,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3942\/revisions\/4578"}],"wp:attachment":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/media?parent=3942"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/categories?post=3942"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/tags?post=3942"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}