{"id":1441,"date":"2013-12-13T01:06:40","date_gmt":"2013-12-13T01:06:40","guid":{"rendered":"http:\/\/excelvbatutor.com\/?page_id=1441"},"modified":"2020-04-25T06:16:11","modified_gmt":"2020-04-25T06:16:11","slug":"excel-vba-2010-lesson-21-formatting-font-and-background-colors","status":"publish","type":"page","link":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/","title":{"rendered":"Excel 2010 VBA Lesson 21: Formatting  Colors"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">&nbsp;<strong><a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-20-the-workbook-object\/\">[Lesson 20]<\/a>&lt;&lt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-tutorial\/\">[Table of Contents]<\/a>&gt;&gt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-22-working-with-check-box-and-option-button\/\">[Lesson 22]<\/a><\/strong><\/h4>\n\n\n\n<p>In this Lesson, we will explore how to write Excel 2010 VBA code that formats the color of an MS Excel spreadsheet. Using &nbsp;Excel 2010 &nbsp;VBA code, we can change the font color as well as the background color of each cell effortlessly<g class=\"gr_ gr_12 gr-alert gr_gramm gr_inline_cards gr_run_anim Style replaceWithoutSep\" id=\"12\" data-gr-id=\"12\">.<\/g><\/p>\n\n\n\n<script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script>\n<ins class=\"adsbygoogle\" style=\"display:block; text-align:center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<p><g class=\"gr_ gr_12 gr-alert gr_gramm gr_inline_cards gr_run_anim Style replaceWithoutSep\" id=\"12\" data-gr-id=\"12\">Alright<\/g>, let\u2019s create a program that can format random font and background colors using a randomizing process. Colors can be assigned using a number of methods in Excel VBA 2010, but it is easier to use the RGB function. The RGB function has three numbers corresponding to the red, green and blue components. The range of values of the three numbers is from 0 to 255. A mixture of the three primary colors will produce different colors.<\/p>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br><ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins><br><script><br \/>\n     (adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><br>The syntax to set the font color is<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>cells(i,j).Font.Color=RGB(x,y,x)<\/strong>\n<\/pre>\n\n\n\n<p>where x ,y , z are&nbsp;any numbers between 1 and 255<\/p>\n\n\n\n<p>For example<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cells(1,1).Font.Color=RGB(255,255,0) \n<\/pre>\n\n\n\n<p>will change the font color to yellow<\/p>\n\n\n\n<p>The syntax to set the cell\u2019s background color is<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>cells(i,j).Interior.Color=RGB(x,y,x)<\/strong>\n<\/pre>\n\n\n\n<p>Where x ,y , z can be any number between 1 and 255<\/p>\n\n\n\n<p>Some RGB Color Codes are shown in the following table:<\/p>\n\n\n\n<div style=\"overflow-x:auto;\">\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\" width=\"90%\" align=\"center\">\n<thead>\n<caption>Table 21.1 Color Code<\/caption>\n<tr>\n<th>Color<\/th>\n<th>RGB Code<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"background-color:rgb(0,0,0)\"><\/td>\n<td style=\"text-align:center\">(0,0,0)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(255,0,0)\"><\/td>\n<td style=\"text-align:center\">(255,0,0)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(255,255,0)\"><\/td>\n<td style=\"text-align:center\">(255,255,0)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(255,165,0)\"><\/td>\n<td style=\"text-align:center\">(255,165,0)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(0,0,255)\"><\/td>\n<td style=\"text-align:center\">(0,0,255)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(0,128,0)\"><\/td>\n<td style=\"text-align:center\">(0,128,0)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(128,0,128)\"><\/td>\n<td style=\"text-align:center\">(128,0,128)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(0,255,255)\"><\/td>\n<td style=\"text-align:center\">\t(0,255,255)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(128,0,0)\"><\/td>\n<td style=\"text-align:center\">(128,0,0)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(128,128,128)\"><\/td>\n<td style=\"text-align:center\">(128,128,128)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(255,0,255)\"><\/td>\n<td style=\"text-align:center\">(255,0,255)<\/td>\n<\/tr>\n<tr>\n<td style=\"background-color:rgb(0,0,0)\"><\/td>\n<td style=\"text-align:center\">(220,20,60)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br><ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins><br><script><br \/>\n     (adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Example 21.1<\/strong><\/h4>\n\n\n\n<p>In this example, clicking the command button changes the background colors from Cells(1,1) to Cells(7,1) according to the specified RGB color codes. It also formats the font colors from Cells(1,2) to cells(7,2) using specified RGB color codes.<\/p>\n\n\n\n<p><strong>The code<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Private Sub CommandButton1_Click()\nDim i As Integer\n\n\u2018To fill the cells with colors using RGB codes\nCells(1, 1).Interior.Color = RGB(0, 0, 0)\nCells(2, 1).Interior.Color = RGB(255, 0, 0)\nCells(3, 1).Interior.Color = RGB(255, 255, 0)\nCells(4, 1).Interior.Color = RGB(255, 165, 0)\nCells(5, 1).Interior.Color = RGB(0, 0, 255)\nCells(6, 1).Interior.Color = RGB(0, 128, 0)\nCells(7, 1).Interior.Color = RGB(128, 0, 128)\n\u2018To format font color with RGB codes\nFor i = 1 To 7\nCells(i, 2).Value = \u201cFont Color\u201d\nNext\nCells(1, 2).Font.Color = RGB(0, 0, 0)\nCells(2, 2).Font.Color = RGB(255, 0, 0)\nCells(3, 2).Font.Color = RGB(255, 255, 0)\nCells(4, 2).Font.Color = RGB(255, 165, 0)\nCells(5, 2).Font.Color = RGB(0, 0, 255)\nCells(6, 2).Font.Color = RGB(0, 128, 0)\nCells(7, 2).Font.Color = RGB(128, 0, 128)\n\nEnd Sub\n<\/pre>\n\n\n\n<p><strong>The Output<\/strong><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"420\" height=\"378\" src=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg\" alt=\"vba2010_figure21.1\" class=\"wp-image-1446\"\/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Figure 21.1<\/h4>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br><ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins><br><script><br \/>\n     (adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Example 21.2<\/strong><\/h4>\n\n\n\n<p>In this example, the font color in cells(1,1) and background color in cells(2,1) are changing for every click of the command button due to the randomized process.Rnd is a random number between 0 and 1, therefore&nbsp;255* Rnd will produce a number between 0 and 255 &nbsp;and&nbsp;Int(255*Rnd) will produce integers that take the values from 0 to 254<br>So we need to add 1 to get random integers from 0 to 255.<br>For example;Rnd=0.229<br>255*Rnd=58.395<br>Int(58.395)=58<\/p>\n\n\n\n<p><strong>The code<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Private Sub CommandButton1_Click()\nDim i, j, k As Integer\ni = Int(255 * Rnd) + 1\nj = Int(255 * Rnd) + 1\nk = Int(255 * Rnd) + 1\nCells(1, 1).Font.Color = RGB(i, j, k)\nCells(2, 1).Interior.Color = RGB(j, k, i)\nEnd Sub\n<\/pre>\n\n\n\n<p><strong>The Output<\/strong><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.2.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"288\" height=\"294\" src=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.2.jpg\" alt=\"vba2010_figure21.2\" class=\"wp-image-1449\"\/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Figure 21.2<\/h4>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br><ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins><br><script><br \/>\n     (adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">&nbsp;<strong><a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-20-the-workbook-object\/\">[Lesson 20]<\/a>&lt;&lt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-tutorial\/\">[Table of Contents]<\/a>&gt;&gt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-22-working-with-check-box-and-option-button\/\">[Lesson 22]<\/a><\/strong><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp;[Lesson 20]&lt;&lt;[Table of Contents]&gt;&gt;[Lesson 22] In this Lesson, we will explore how to write Excel 2010 VBA code that formats the color of an MS Excel spreadsheet. Using &nbsp;Excel 2010 &nbsp;VBA code, we can change the font color as well as the background color of each cell effortlessly. Alright, let\u2019s create a program that can &hellip; <a href=\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Excel 2010 VBA Lesson 21: Formatting  Colors&#8221;<\/span><\/a><\/p>\n","protected":false},"author":5012,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[22],"tags":[],"class_list":["post-1441","page","type-page","status-publish","hentry","category-formatting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Excel 2010 VBA Lesson 21: Formatting Colors - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor<\/title>\n<meta name=\"description\" content=\"This lesson explains how to format font and background colors Excel 2010 spreadsheet using excel 2010 vba\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel 2010 VBA Lesson 21: Formatting Colors - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\" \/>\n<meta property=\"og:description\" content=\"This lesson explains how to format font and background colors Excel 2010 spreadsheet using excel 2010 vba\" \/>\n<meta property=\"og:url\" content=\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/\" \/>\n<meta property=\"og:site_name\" content=\"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-25T06:16:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"420\" \/>\n\t<meta property=\"og:image:height\" content=\"378\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/\",\"url\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/\",\"name\":\"Excel 2010 VBA Lesson 21: Formatting Colors - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\",\"isPartOf\":{\"@id\":\"https:\/\/excelvbatutor.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg\",\"datePublished\":\"2013-12-13T01:06:40+00:00\",\"dateModified\":\"2020-04-25T06:16:11+00:00\",\"description\":\"This lesson explains how to format font and background colors Excel 2010 spreadsheet using excel 2010 vba\",\"breadcrumb\":{\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#primaryimage\",\"url\":\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg\",\"contentUrl\":\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg\",\"width\":420,\"height\":378},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/excelvbatutor.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel 2010 VBA Lesson 21: Formatting Colors\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/excelvbatutor.com\/#website\",\"url\":\"https:\/\/excelvbatutor.com\/\",\"name\":\"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\",\"description\":\"Master Excel VBA with free tutorials, examples, and personalized guidance. Perfect for beginners and advanced users looking to automate Excel.\",\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Excel 2010 VBA Lesson 21: Formatting Colors - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","description":"This lesson explains how to format font and background colors Excel 2010 spreadsheet using excel 2010 vba","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:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/","og_locale":"en_US","og_type":"article","og_title":"Excel 2010 VBA Lesson 21: Formatting Colors - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","og_description":"This lesson explains how to format font and background colors Excel 2010 spreadsheet using excel 2010 vba","og_url":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/","og_site_name":"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","article_modified_time":"2020-04-25T06:16:11+00:00","og_image":[{"width":420,"height":378,"url":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg","type":"image\/jpeg"}],"twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/","url":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/","name":"Excel 2010 VBA Lesson 21: Formatting Colors - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","isPartOf":{"@id":"https:\/\/excelvbatutor.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#primaryimage"},"image":{"@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#primaryimage"},"thumbnailUrl":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg","datePublished":"2013-12-13T01:06:40+00:00","dateModified":"2020-04-25T06:16:11+00:00","description":"This lesson explains how to format font and background colors Excel 2010 spreadsheet using excel 2010 vba","breadcrumb":{"@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#primaryimage","url":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg","contentUrl":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_figure21.1.jpg","width":420,"height":378},{"@type":"BreadcrumbList","@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-21-formatting-font-and-background-colors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/excelvbatutor.com\/"},{"@type":"ListItem","position":2,"name":"Excel 2010 VBA Lesson 21: Formatting Colors"}]},{"@type":"WebSite","@id":"https:\/\/excelvbatutor.com\/#website","url":"https:\/\/excelvbatutor.com\/","name":"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","description":"Master Excel VBA with free tutorials, examples, and personalized guidance. Perfect for beginners and advanced users looking to automate Excel.","inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages\/1441","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/users\/5012"}],"replies":[{"embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/comments?post=1441"}],"version-history":[{"count":51,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages\/1441\/revisions"}],"predecessor-version":[{"id":3483,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages\/1441\/revisions\/3483"}],"wp:attachment":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/media?parent=1441"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/categories?post=1441"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/tags?post=1441"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}