{"id":1022,"date":"2023-08-10T13:00:02","date_gmt":"2023-08-10T17:00:02","guid":{"rendered":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/?post_type=chapter&#038;p=1022"},"modified":"2025-08-13T11:17:51","modified_gmt":"2025-08-13T15:17:51","slug":"accessible-html","status":"publish","type":"chapter","link":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/chapter\/accessible-html\/","title":{"raw":"Accessible HTML","rendered":"Accessible HTML"},"content":{"raw":"<div class=\"textbox outer\">\r\n<h2>Best HTML Accessibility Practices in<\/h2>\r\n<div class=\"textbox inner\">\r\n<h2>Pressbooks<\/h2>\r\n<\/div>\r\n<\/div>\r\nHypertext Markup Language (HTML) is the backbone of any web page; it structures your text, images, and other informative elements to be displayed. Pressbooks inherently generates semantic HTML designed for assistive technologies, which is visible by examining the markup in the text editor or by using the inspect tool available in most web browsers. To understand what is happening in the text editor and whether improvements are needed, let us take a moment to go over practices that make HTML well-structured and readable.\r\n<h3>Use Specific Tags Instead of Generic Tags<\/h3>\r\nSpecificity enables users and assistive technologies to recognize the different elements within the page, thereby defining their purpose. Using tags <span class=\"inline-code green-text\">&lt;h1&gt;<\/span> to <span class=\"inline-code green-text\">&lt;h6&gt;<\/span> indicates that six headings are structuring the content. Using the paragraph <span class=\"inline-code green-text\">&lt;p&gt;<\/span> tag confines the body text in its paragraph. Hyperlink tags, such as &lt;a&gt;,\u00a0enable links to be embedded as clickable text.\r\n\r\nSpecific rather than generic tags clearly define elements on a page. Examples of generic tags include <span class=\"inline-code green-text\">&lt;div&gt;<\/span> to mark a division and <span class=\"inline-code green-text\">&lt;span&gt;<\/span> to mark up a part of text. Although a <span class=\"inline-code green-text\">&lt;div&gt;<\/span> can be styled to resemble a paragraph or a header, the paragraph and header tags will be more effectively interpreted by assistive technologies.\r\n\r\nFor example:\r\n<div class=\"code-textbox-outer\">\r\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\r\n<pre class=\"code-textbox-inner\">&lt;h1&gt;<span class=\"black-text\"> Welcome to Accessible Design <\/span>&lt;\/h1&gt;\r\n&lt;p&gt;<span class=\"black-text\"> Best practices for creating accessible content using semantic HTML. <\/span>&lt;\/p&gt;\r\n&lt;a <span class=\"red-text\">href<\/span><span class=\"blue-text\">=\"https:\/\/example.com\/learn-more\"<\/span>&gt;<span class=\"black-text\"> Learn more about accessibility. <\/span>&lt;\/a&gt;\r\n<\/pre>\r\n<\/div>\r\n<h3>Use Proper Headings<\/h3>\r\nHeadings provide structure to a page and its body text. When you title your chapters through the organizational structure of your site, Pressbooks automatically marks up your chapter title with the <span class=\"inline-code green-text\">&lt;h1 <span class=\"red-text\">class<\/span><span class=\"blue-text\">=\"entry-title\"<\/span>&gt;<\/span> tag. The text editor enables the use of header tags <span class=\"inline-code green-text\">&lt;h2&gt;<\/span>, <span class=\"inline-code green-text\">&lt;h3&gt;<\/span> \u2026 <span class=\"inline-code green-text\">&lt;h6&gt;<\/span> that convey the hierarchy of information on your page.\u00a0 Skipping levels, such as jumping from &lt;h2&gt; to &lt;h5&gt;, can disrupt the reading flow for users of\u00a0assistive technologies. Ensure that the headers are in order.\r\n\r\nFor example:\r\n<div class=\"code-textbox-outer\">\r\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\r\n<pre class=\"code-textbox-inner\">&lt;h1&gt;<span class=\"black-text\"> Introduction to Accessible Design <\/span>&lt;\/h1&gt;\r\n&lt;h2&gt;<span class=\"black-text\"> What are some best accessibility practices in your Pressbook? <\/span>&lt;\/h2&gt;\r\n&lt;h3&gt;<span class=\"black-text\"> Use Proper Headings <\/span>&lt;\/h3&gt;\r\n<\/pre>\r\n<\/div>\r\n<h3>Provide Meaningful Text when Hyperlinking<\/h3>\r\nWhen required to hyperlink to navigate to an external link, the hyperlinked text should meaningfully describe the link's purpose. Hyperlinking to other sources using text like \u201cclick here\u201d can cause ambiguity for both screen readers and people. The text with the underlying link should be able to convey information regarding the link without users having to rely on the surrounding text.\r\n\r\nFor example:\r\n<div class=\"code-textbox-outer\">\r\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\r\n<pre class=\"code-textbox-inner\">&lt;a <span class=\"red-text\">href<\/span><span class=\"blue-text\">=\"https:\/\/pressbooks.com\/accessibility\"<\/span>&gt;<span class=\"black-text\"> Accessibility guide. <\/span>&lt;\/a&gt;\r\n<\/pre>\r\n<\/div>\r\n<h3>Add Alternative Text for Images<\/h3>\r\nAlt text (alternative text, or alt attributes) for images is an attribute denoted by <span class=\"inline-code blue-text\"><span class=\"red-text\">alt<\/span>=\"\"<\/span> in the <span class=\"inline-code green-text\">&lt;img&gt;<\/span> image tag. It allows a text alternative to display if the image fails to load and enables accessible technologies to obtain a description of the image through the <span class=\"inline-code red-text\">alt<\/span> attribute. The alternative text should be concise yet descriptive of the image. A concise description is crucial for visually impaired users to comprehend the key elements conveyed by the images on the page through screen readers.\r\n\r\nFor example:\r\n<div class=\"code-textbox-outer\">\r\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\r\n<pre class=\"code-textbox-inner\">&lt;img <span class=\"red-text\">src<\/span><span class=\"blue-text\">=\"images\/photo-one.jpeg\"<\/span> <span class=\"red-text\">alt<\/span><span class=\"blue-text\">=\"A dog playing in the park.\"<\/span>&gt;\r\n<\/pre>\r\n<\/div>\r\n<h3>Ensure Table Accessibility<\/h3>\r\nTables are used to organize data in rows and columns and are understood in relation to each other. The header cells are created using the <span class=\"inline-code green-text\">&lt;th&gt;<\/span> tag. A <span class=\"inline-code red-text\">scope<\/span> attribute in the <span class=\"inline-code green-text\">&lt;th&gt;<\/span> tag specifies whether the header is a column header (<span class=\"inline-code green-text\">&lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=\"col\"<\/span>&gt;<\/span>) or a row header (<span class=\"inline-code green-text\">&lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=\"row\"<\/span>&gt;<\/span>). Keeping the table simple and clean by using one piece of data per cell (atomic) facilitates accessibility. An accessible table avoids merged cells, which disrupt the logical flow of information. Rather than merging cells, include the caption beneath the table to concisely describe the idea of what the data represents. Using tables for anything else, such as fixing page layouts, should be avoided.\r\n\r\nFor example:\r\n<div class=\"code-textbox-outer\">\r\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\r\n<pre class=\"code-textbox-inner\">&lt;table&gt;\r\n  &lt;tr&gt;\r\n    &lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=\"col\"<\/span>&gt;<span class=\"black-text\"> Genre <\/span>&lt;\/th&gt;\r\n    &lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=\"col\"<\/span>&gt;<span class=\"black-text\"> Author <\/span>&lt;\/th&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td&gt;<span class=\"black-text\"> Design <\/span>&lt;\/td&gt;\r\n    &lt;td&gt;<span class=\"black-text\"> William <\/span>&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n&lt;\/table&gt;\r\n<\/pre>\r\n<\/div>\r\n<h3>Text Formatting Conventions<\/h3>\r\nFormatting with appropriate HTML tags enhances readability.\u00a0 We have listed the function of four of the most used tags:\r\n<ul>\r\n \t<li><span class=\"inline-code green-text\">&lt;strong&gt;<\/span> makes specific labels, descriptors, and headings stand out.<\/li>\r\n \t<li><span class=\"inline-code green-text\">&lt;em&gt;<\/span> italicizes certain words or phrases to convey their importance.<\/li>\r\n \t<li><span class=\"inline-code green-text\">&lt;cite&gt;<\/span> italicizes the title of a book that is being referenced.<\/li>\r\n \t<li><span class=\"inline-code green-text\">&lt;blockquote&gt;<\/span> provides a neat block that keeps a quote separate from the surrounding text.<\/li>\r\n<\/ul>\r\nFor example:\r\n<div class=\"code-textbox-outer\">\r\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\r\n<pre class=\"code-textbox-inner\">&lt;p&gt; &lt;strong&gt;<span class=\"black-text\">Accessibility<\/span>&lt;\/strong&gt;<span class=\"black-text\"> means ensuring digital content is usable\r\n  by everyone. <\/span>&lt;\/p&gt;\r\n&lt;p&gt;<span class=\"black-text\"> This guide references <\/span>&lt;cite&gt;<span class=\"black-text\">Web Content Accessibility Guidelines (WCAG).<\/span>\r\n&lt;\/cite&gt;&lt;\/p&gt;\r\n&lt;blockquote&gt;\r\n  <span class=\"black-text\">\"Accessible design benefits all users, not only those with disabilities.\"<\/span>\r\n&lt;\/blockquote&gt;\r\n&lt;p&gt;<span class=\"black-text\"> Always emphasize key concepts like <span class=\"green-text\">&lt;em&gt;<\/span>usability<span class=\"green-text\">&lt;\/em&gt;<\/span> clearly. <\/span>&lt;\/p&gt;\r\n<\/pre>\r\n<\/div>\r\n<h3>Naming Conventions for IDs and Classes<\/h3>\r\nIDs and Class names are used to identify and group the creation of design elements. Some naming conventions should be followed to ensure consistency during design and for easier edits later on.\r\n\r\nBest practices for naming include:\r\n<ul>\r\n \t<li>Using only lowercase letters,<\/li>\r\n \t<li>Using dashes, not spaces, for multi-word names,<\/li>\r\n \t<li>Avoiding special characters <span class=\"inline-code green-text\">!<\/span>, <span class=\"inline-code green-text\">?<\/span>, <span class=\"inline-code green-text\">\\<\/span>, and <span class=\"inline-code green-text\">@<\/span>.<\/li>\r\n<\/ul>\r\nFor example:\r\n<div class=\"code-textbox-outer\">\r\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\r\n<pre class=\"code-textbox-inner\">&lt;div <span class=\"red-text\">id<\/span><span class=\"blue-text\">=\"nav-bar\"<\/span>&gt;&lt;\/div&gt;\r\n&lt;p <span class=\"red-text\">class<\/span><span class=\"blue-text\">=\"contact-us-message\"<\/span>&gt;<span class=\"black-text\"> Contact Us! <\/span>&lt;\/p&gt;\r\n&lt;button <span class=\"red-text\">class<\/span><span class=\"blue-text\">=\"submit-button\"<\/span>&gt;<span class=\"black-text\"> Submit <\/span>&lt;\/button&gt;\r\n<\/pre>\r\n<\/div>\r\n<div class=\"textbox textbox--learning-objectives\">\r\n<div class=\"textbox__content\">Considering modifying the default theme beyond the theme options provided as part of your Pressbooks project with Concordia University Library? If so, please include your intentions to customize the Cascading Style Sheets (CSS) in the project plan for your open textbook or open guidebook. We additionally recommend creating a <a href=\"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/chapter\/design-appendix\/\">design plan<\/a>.<\/div>\r\n<\/div>","rendered":"<div class=\"textbox outer\">\n<h2>Best HTML Accessibility Practices in<\/h2>\n<div class=\"textbox inner\">\n<h2>Pressbooks<\/h2>\n<\/div>\n<\/div>\n<p>Hypertext Markup Language (HTML) is the backbone of any web page; it structures your text, images, and other informative elements to be displayed. Pressbooks inherently generates semantic HTML designed for assistive technologies, which is visible by examining the markup in the text editor or by using the inspect tool available in most web browsers. To understand what is happening in the text editor and whether improvements are needed, let us take a moment to go over practices that make HTML well-structured and readable.<\/p>\n<h3>Use Specific Tags Instead of Generic Tags<\/h3>\n<p>Specificity enables users and assistive technologies to recognize the different elements within the page, thereby defining their purpose. Using tags <span class=\"inline-code green-text\">&lt;h1&gt;<\/span> to <span class=\"inline-code green-text\">&lt;h6&gt;<\/span> indicates that six headings are structuring the content. Using the paragraph <span class=\"inline-code green-text\">&lt;p&gt;<\/span> tag confines the body text in its paragraph. Hyperlink tags, such as &lt;a&gt;,\u00a0enable links to be embedded as clickable text.<\/p>\n<p>Specific rather than generic tags clearly define elements on a page. Examples of generic tags include <span class=\"inline-code green-text\">&lt;div&gt;<\/span> to mark a division and <span class=\"inline-code green-text\">&lt;span&gt;<\/span> to mark up a part of text. Although a <span class=\"inline-code green-text\">&lt;div&gt;<\/span> can be styled to resemble a paragraph or a header, the paragraph and header tags will be more effectively interpreted by assistive technologies.<\/p>\n<p>For example:<\/p>\n<div class=\"code-textbox-outer\">\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\n<pre class=\"code-textbox-inner\">&lt;h1&gt;<span class=\"black-text\"> Welcome to Accessible Design <\/span>&lt;\/h1&gt;\r\n&lt;p&gt;<span class=\"black-text\"> Best practices for creating accessible content using semantic HTML. <\/span>&lt;\/p&gt;\r\n&lt;a <span class=\"red-text\">href<\/span><span class=\"blue-text\">=\"https:\/\/example.com\/learn-more\"<\/span>&gt;<span class=\"black-text\"> Learn more about accessibility. <\/span>&lt;\/a&gt;\r\n<\/pre>\n<\/div>\n<h3>Use Proper Headings<\/h3>\n<p>Headings provide structure to a page and its body text. When you title your chapters through the organizational structure of your site, Pressbooks automatically marks up your chapter title with the <span class=\"inline-code green-text\">&lt;h1 <span class=\"red-text\">class<\/span><span class=\"blue-text\">=&#8221;entry-title&#8221;<\/span>&gt;<\/span> tag. The text editor enables the use of header tags <span class=\"inline-code green-text\">&lt;h2&gt;<\/span>, <span class=\"inline-code green-text\">&lt;h3&gt;<\/span> \u2026 <span class=\"inline-code green-text\">&lt;h6&gt;<\/span> that convey the hierarchy of information on your page.\u00a0 Skipping levels, such as jumping from &lt;h2&gt; to &lt;h5&gt;, can disrupt the reading flow for users of\u00a0assistive technologies. Ensure that the headers are in order.<\/p>\n<p>For example:<\/p>\n<div class=\"code-textbox-outer\">\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\n<pre class=\"code-textbox-inner\">&lt;h1&gt;<span class=\"black-text\"> Introduction to Accessible Design <\/span>&lt;\/h1&gt;\r\n&lt;h2&gt;<span class=\"black-text\"> What are some best accessibility practices in your Pressbook? <\/span>&lt;\/h2&gt;\r\n&lt;h3&gt;<span class=\"black-text\"> Use Proper Headings <\/span>&lt;\/h3&gt;\r\n<\/pre>\n<\/div>\n<h3>Provide Meaningful Text when Hyperlinking<\/h3>\n<p>When required to hyperlink to navigate to an external link, the hyperlinked text should meaningfully describe the link&#8217;s purpose. Hyperlinking to other sources using text like \u201cclick here\u201d can cause ambiguity for both screen readers and people. The text with the underlying link should be able to convey information regarding the link without users having to rely on the surrounding text.<\/p>\n<p>For example:<\/p>\n<div class=\"code-textbox-outer\">\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\n<pre class=\"code-textbox-inner\">&lt;a <span class=\"red-text\">href<\/span><span class=\"blue-text\">=\"https:\/\/pressbooks.com\/accessibility\"<\/span>&gt;<span class=\"black-text\"> Accessibility guide. <\/span>&lt;\/a&gt;\r\n<\/pre>\n<\/div>\n<h3>Add Alternative Text for Images<\/h3>\n<p>Alt text (alternative text, or alt attributes) for images is an attribute denoted by <span class=\"inline-code blue-text\"><span class=\"red-text\">alt<\/span>=&#8221;&#8221;<\/span> in the <span class=\"inline-code green-text\">&lt;img&gt;<\/span> image tag. It allows a text alternative to display if the image fails to load and enables accessible technologies to obtain a description of the image through the <span class=\"inline-code red-text\">alt<\/span> attribute. The alternative text should be concise yet descriptive of the image. A concise description is crucial for visually impaired users to comprehend the key elements conveyed by the images on the page through screen readers.<\/p>\n<p>For example:<\/p>\n<div class=\"code-textbox-outer\">\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\n<pre class=\"code-textbox-inner\">&lt;img <span class=\"red-text\">src<\/span><span class=\"blue-text\">=\"images\/photo-one.jpeg\"<\/span> <span class=\"red-text\">alt<\/span><span class=\"blue-text\">=\"A dog playing in the park.\"<\/span>&gt;\r\n<\/pre>\n<\/div>\n<h3>Ensure Table Accessibility<\/h3>\n<p>Tables are used to organize data in rows and columns and are understood in relation to each other. The header cells are created using the <span class=\"inline-code green-text\">&lt;th&gt;<\/span> tag. A <span class=\"inline-code red-text\">scope<\/span> attribute in the <span class=\"inline-code green-text\">&lt;th&gt;<\/span> tag specifies whether the header is a column header (<span class=\"inline-code green-text\">&lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=&#8221;col&#8221;<\/span>&gt;<\/span>) or a row header (<span class=\"inline-code green-text\">&lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=&#8221;row&#8221;<\/span>&gt;<\/span>). Keeping the table simple and clean by using one piece of data per cell (atomic) facilitates accessibility. An accessible table avoids merged cells, which disrupt the logical flow of information. Rather than merging cells, include the caption beneath the table to concisely describe the idea of what the data represents. Using tables for anything else, such as fixing page layouts, should be avoided.<\/p>\n<p>For example:<\/p>\n<div class=\"code-textbox-outer\">\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\n<pre class=\"code-textbox-inner\">&lt;table&gt;\r\n  &lt;tr&gt;\r\n    &lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=\"col\"<\/span>&gt;<span class=\"black-text\"> Genre <\/span>&lt;\/th&gt;\r\n    &lt;th <span class=\"red-text\">scope<\/span><span class=\"blue-text\">=\"col\"<\/span>&gt;<span class=\"black-text\"> Author <\/span>&lt;\/th&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td&gt;<span class=\"black-text\"> Design <\/span>&lt;\/td&gt;\r\n    &lt;td&gt;<span class=\"black-text\"> William <\/span>&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n&lt;\/table&gt;\r\n<\/pre>\n<\/div>\n<h3>Text Formatting Conventions<\/h3>\n<p>Formatting with appropriate HTML tags enhances readability.\u00a0 We have listed the function of four of the most used tags:<\/p>\n<ul>\n<li><span class=\"inline-code green-text\">&lt;strong&gt;<\/span> makes specific labels, descriptors, and headings stand out.<\/li>\n<li><span class=\"inline-code green-text\">&lt;em&gt;<\/span> italicizes certain words or phrases to convey their importance.<\/li>\n<li><span class=\"inline-code green-text\">&lt;cite&gt;<\/span> italicizes the title of a book that is being referenced.<\/li>\n<li><span class=\"inline-code green-text\">&lt;blockquote&gt;<\/span> provides a neat block that keeps a quote separate from the surrounding text.<\/li>\n<\/ul>\n<p>For example:<\/p>\n<div class=\"code-textbox-outer\">\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\n<pre class=\"code-textbox-inner\">&lt;p&gt; &lt;strong&gt;<span class=\"black-text\">Accessibility<\/span>&lt;\/strong&gt;<span class=\"black-text\"> means ensuring digital content is usable\r\n  by everyone. <\/span>&lt;\/p&gt;\r\n&lt;p&gt;<span class=\"black-text\"> This guide references <\/span>&lt;cite&gt;<span class=\"black-text\">Web Content Accessibility Guidelines (WCAG).<\/span>\r\n&lt;\/cite&gt;&lt;\/p&gt;\r\n&lt;blockquote&gt;\r\n  <span class=\"black-text\">\"Accessible design benefits all users, not only those with disabilities.\"<\/span>\r\n&lt;\/blockquote&gt;\r\n&lt;p&gt;<span class=\"black-text\"> Always emphasize key concepts like <span class=\"green-text\">&lt;em&gt;<\/span>usability<span class=\"green-text\">&lt;\/em&gt;<\/span> clearly. <\/span>&lt;\/p&gt;\r\n<\/pre>\n<\/div>\n<h3>Naming Conventions for IDs and Classes<\/h3>\n<p>IDs and Class names are used to identify and group the creation of design elements. Some naming conventions should be followed to ensure consistency during design and for easier edits later on.<\/p>\n<p>Best practices for naming include:<\/p>\n<ul>\n<li>Using only lowercase letters,<\/li>\n<li>Using dashes, not spaces, for multi-word names,<\/li>\n<li>Avoiding special characters <span class=\"inline-code green-text\">!<\/span>, <span class=\"inline-code green-text\">?<\/span>, <span class=\"inline-code green-text\">\\<\/span>, and <span class=\"inline-code green-text\">@<\/span>.<\/li>\n<\/ul>\n<p>For example:<\/p>\n<div class=\"code-textbox-outer\">\n<pre class=\"code-textbox-title\">  HTML:\r\n<\/pre>\n<pre class=\"code-textbox-inner\">&lt;div <span class=\"red-text\">id<\/span><span class=\"blue-text\">=\"nav-bar\"<\/span>&gt;&lt;\/div&gt;\r\n&lt;p <span class=\"red-text\">class<\/span><span class=\"blue-text\">=\"contact-us-message\"<\/span>&gt;<span class=\"black-text\"> Contact Us! <\/span>&lt;\/p&gt;\r\n&lt;button <span class=\"red-text\">class<\/span><span class=\"blue-text\">=\"submit-button\"<\/span>&gt;<span class=\"black-text\"> Submit <\/span>&lt;\/button&gt;\r\n<\/pre>\n<\/div>\n<div class=\"textbox textbox--learning-objectives\">\n<div class=\"textbox__content\">Considering modifying the default theme beyond the theme options provided as part of your Pressbooks project with Concordia University Library? If so, please include your intentions to customize the Cascading Style Sheets (CSS) in the project plan for your open textbook or open guidebook. We additionally recommend creating a <a href=\"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/chapter\/design-appendix\/\">design plan<\/a>.<\/div>\n<\/div>\n","protected":false},"author":1,"menu_order":2,"template":"","meta":{"pb_show_title":"on","pb_short_title":"","pb_subtitle":"","pb_authors":[],"pb_section_license":""},"chapter-type":[48],"contributor":[],"license":[],"class_list":["post-1022","chapter","type-chapter","status-publish","hentry","chapter-type-numberless"],"part":4781,"_links":{"self":[{"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/pressbooks\/v2\/chapters\/1022","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/pressbooks\/v2\/chapters"}],"about":[{"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/wp\/v2\/types\/chapter"}],"author":[{"embeddable":true,"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":112,"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/pressbooks\/v2\/chapters\/1022\/revisions"}],"predecessor-version":[{"id":6234,"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/pressbooks\/v2\/chapters\/1022\/revisions\/6234"}],"part":[{"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/pressbooks\/v2\/parts\/4781"}],"metadata":[{"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/pressbooks\/v2\/chapters\/1022\/metadata\/"}],"wp:attachment":[{"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/wp\/v2\/media?parent=1022"}],"wp:term":[{"taxonomy":"chapter-type","embeddable":true,"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/pressbooks\/v2\/chapter-type?post=1022"},{"taxonomy":"contributor","embeddable":true,"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/wp\/v2\/contributor?post=1022"},{"taxonomy":"license","embeddable":true,"href":"https:\/\/opentextbooks.concordia.ca\/pressbooksuserguide\/wp-json\/wp\/v2\/license?post=1022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}