{"id":680,"date":"2021-04-21T05:34:15","date_gmt":"2021-04-21T05:34:15","guid":{"rendered":"https:\/\/bcisnotes.com\/fourthsemester\/?p=680"},"modified":"2021-04-21T11:22:56","modified_gmt":"2021-04-21T11:22:56","slug":"structural-html-tags-review-of-html-tags-bcis-notes","status":"publish","type":"post","link":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/","title":{"rendered":"Structural HTML Tags || Review of HTML Tags || BCIS Notes"},"content":{"rendered":"<h1 style=\"text-align: center;\">Structural HTML Tags<\/h1>\n<p>Structured HTML tags are like keywords define that how a web browser will format and display the content. With the help of tags, a web browser can distinguish between HTML content and simple content. HTML tags contain three main parts: an opening tag, content, and closing tag. But some HTML tags are unclosed tags. HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties. All HTML tags must enclosed within &lt; &gt; these brackets.<\/p>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>&lt;body&gt;<\/h3>\n<p><strong>&lt;body&gt;&#8230;&lt;\/body&gt;<\/strong><br \/>\nDefines the beginning and the end of the document body. The body contains the content of the document (the part that is displayed in the browser window). Attributes to the &lt;body&gt; tag affect the entire document.<\/p>\n<p><strong>Attributes<\/strong><br \/>\nalink=&#8221;#rrggbb&#8221; or color name<br \/>\nSets the color of active links (i.e., the color while the mouse button is held down during a \u201cclick\u201d). Color is specified in hexadecimal RGB values or by standard web color name. Chapter 5, HTML Overview, explains how to specify color in HTML.<\/p>\n<p>background=url<br \/>\nProvides the URL to a graphic file to be used as a tiling graphic in the background of the document. bgcolor=&#8221;#rrggbb&#8221; or color name<br \/>\nSets the color of the background for the document. Color is specified in hexadecimal RGB values or by standard web color name.<\/p>\n<p>link=&#8221;#rrggbb&#8221; or color name<br \/>\nSets the default color for all the links in the document. Color is specified in hexadecimal RGB values or by standard web color name.<\/p>\n<p>text=&#8221;#rrggbb&#8221; or color name<br \/>\nSets the default color for all the text in the document. Color is specified in hexadecimal RGB values or by standard web color name.<\/p>\n<p>vlink=&#8221;#rrggbb&#8221; or color name<br \/>\nSets the color of the visited links for the document. Color is specified in hexadecimal RGB values or by standard web color name.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 3\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>&lt;head&gt;<\/h3>\n<p><strong>&lt;head&gt;&#8230;&lt;\/head&gt;<\/strong><br \/>\nDefines the head (also called \u201cheader\u201d) portion of the document that contains information about the document. The &lt;head&gt; tag has no attributes, but serves only as a container for the other header tags, such as &lt;base&gt;, &lt;meta&gt;, and &lt;title&gt;.<\/p>\n<p><strong>&lt;html&gt;&#8230;&lt;\/html&gt;<\/strong><br \/>\nPlaced at the beginning and end of the document, this tag tells the browser that the entire document is composed in HTML.<\/p>\n<p><strong>&lt;link&gt;<\/strong><br \/>\nDefines a relationship between the current document and another document. This tag goes within the &lt;head&gt; portion of the document. It is often used to refer to an external stylesheet.<\/p>\n<p><strong>Attributes<\/strong><br \/>\nhref=url<br \/>\nIdentifies the target document.<\/p>\n<p>methods=list<br \/>\nSpecifies a browser-dependent list of comma-separated display methods for this link. It is not commonly used.<\/p>\n<p>rev=relation<br \/>\nSpecifies the relationship from the target document to the source.<\/p>\n<p>rel=relation<br \/>\nSpecifies the relationship from the current source document to the target.<\/p>\n<p>rel=stylesheet<br \/>\nThis attribute is used within the &lt;link&gt; tag to create a relationship with an external stylesheet.<\/p>\n<p>title=text<br \/>\nProvides a title for the target document.<\/p>\n<p>type=resource<br \/>\nShows the type of outside link. The value text\/CSS indicates that the linked document is an external cascading style sheet<\/p>\n<h3>&lt;meta&gt;<\/h3>\n<p><strong>&lt;meta&gt;<\/strong><br \/>\nProvides additional information about the document. It should be placed within the &lt;head&gt; tags at the beginning of the document. It is commonly used for making documents searchable (by adding keywords) and may be used for client pull functions.<\/p>\n<p><strong>Attributes<\/strong><\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 4\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>content=text<br \/>\nSpecifies the value of the meta tag and is always used in conjunction with name= or http-equiv=. http-equiv=text<br \/>\nSpecifies information to be included in the HTTP header that the server appends to the document. It is used in conjunction with the name attribute.<\/p>\n<p>name=text<br \/>\nSpecifies a name for the meta information.<\/p>\n<p>scheme=text<br \/>\nProvides additional information for the interpretation of meta data. This is a new attribute introduced in HTML 4.0.<\/p>\n<h3>&lt;title&gt;<\/h3>\n<p><strong>&lt;title&gt;&#8230;&lt;\/title&gt;<\/strong><br \/>\nSpecifies the title of the document. The title generally appears in the top bar of the browser window<\/p>\n<p>Setting Up an HTML Document<\/p>\n<p>The standard skeletal structure of an HTML document is as follows: &lt;HTML&gt;<br \/>\n&lt;HEAD&gt;&lt;TITLE&gt;Document Title&lt;\/TITLE&gt;&lt;\/HEAD&gt; &lt;BODY&gt;Contents of Document&lt;\/BODY&gt;<\/p>\n<p><strong>&lt;\/HTML&gt;<\/strong><br \/>\nThe HTML standard requires that the entire document appears within the &lt;html&gt; container, however, most browsers can properly display the contents of the document even if these tags are omitted. All HTML documents are made up of two main structures, the head (also called the \u201cheader\u201d) and the body. The exception to this rule is when the document contains a frameset in place of the body.<\/p>\n<p><strong>The Document Header<\/strong><\/p>\n<p>The header, delimited by the &lt;head&gt; tag, contains information that describes the HTML document. The head tag has no attributes of its own but merely serves as a container for other tags that help define and manage the document\u2019s contents.<br \/>\nTitles<\/p>\n<p>The most commonly used element within the header is the document title (within &lt;title&gt; tags, as shown in the example above), which provides a description of the page\u2019s contents. The title is also used as the name of the link as displayed in a user\u2019s bookmarks or \u201chot list.\u201d Search engines rely heavily on document titles as well. For all these reasons, it is important to provide thoughtful and descriptive titles for all your documents and avoid vague titles such as \u201cWelcome,\u201d or \u201cMyPage.\u201d<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 5\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3><strong>Other header elements<\/strong><\/h3>\n<p>Other useful HTML elements are also placed within the &lt;head&gt; tags of a document:<\/p>\n<p><strong>&lt;base&gt;<\/strong><br \/>\nThis tag establishes the document\u2019s base location, which serves as a reference for all the links in the document.<\/p>\n<p>Creating Links.<br \/>\n<strong>&lt;link&gt;<\/strong><br \/>\nThis tag defines the relationship between the current document and another document. Although it can signify relationships such as index, next, and previous, it is most often used today to link a document to an external style sheet.<\/p>\n<p><strong>&lt;meta&gt;<\/strong><br \/>\n\u201cMeta\u201d tags are used to provide information about a document, such as<br \/>\nkeywords or descriptions to aid search engines. It may also be used for clientpull<br \/>\nfunctions. The &lt;meta&gt; tag is discussed later in this chapter.<\/p>\n<p><strong>&lt;script&gt;<\/strong><br \/>\nJavaScripts and VBScripts may be added to the document within its header.<\/p>\n<p><strong>&lt;style&gt;<\/strong><br \/>\nEmbedded style sheets must be added to the document header by placing the<br \/>\n&lt;style&gt; element within the &lt;head&gt; container.<br \/>\n.<br \/>\n<strong>The Document Body<\/strong><br \/>\nThe document body, delimited by &lt;body&gt; tags, contains the contents of the document -the part that you want to display in the browser window.<br \/>\nThe body of an HTML document might consist of just a few paragraphs of text, a single image, or a complex combination of text, images, tables, and multimedia objects. What you put on the page is up to you.<\/p>\n<p>You can use the &lt;body&gt; tag to set colors for the background and text elements<\/p>\n<p><strong>Page Element HTML TAG Description<\/strong><\/p>\n<p><strong>Background color<\/strong><br \/>\n&lt;BODY BGCOLOR=&#8221;color&#8221;&gt; Sets the color for the background of the entire page.<br \/>\nRegular text &lt;BODY TEXT=&#8221;color&#8221;&gt; Sets the color for all the regular text in the document. The default color for text is black.<\/p>\n<p>Links &lt;BODY LINK=&#8221;color&#8221;&gt; Sets the color for hyperlinks.<br \/>\nThe default color for links is blue.<\/p>\n<p>Visited link &lt;BODY VLINK=&#8221;color&#8221;&gt; Sets the color for links that have already been clicked. The default color for visited links is purple.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 6\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>Active link &lt;BODY ALINK=&#8221;color&#8221;&gt; Sets the color for a link while it is in the process of being clicked. The default color for an active link is red.<\/p>\n<h3>Formatting Text<\/h3>\n<p><strong>Paragraphs and Headings<\/strong> (Block-Level Elements)<\/p>\n<p>Block-level elements are always formatted with a line-break before and after, with most adding some amount of additional space above and below as well. The most commonly used block elements are paragraphs (&lt;p&gt;), headings (&lt;h1&#8230;h6&gt;), and<br \/>\nblockquotes (&lt;blockquote&gt;).<\/p>\n<p><strong>&lt;address&gt;&#8230;&lt;\/address&gt;<\/strong><br \/>\nIdentifies ownership or authorship information, typically at the beginning or end of a document. Addresses are generally formatted in italic type with a line break (but no extra space) above and below.<\/p>\n<p><strong>&lt;blockquote&gt;&#8230;&lt;\/blockquote&gt;<\/strong><br \/>\nEnclosed text is a blockquote, which is generally displayed with an indent on the left and right margins and added space above and below the paragraph.<br \/>\nNote that:<br \/>\n\u2022 Some older browsers display blockquote material in italic, making it difficult to read.<br \/>\n\u2022 Browsers are inconsistent in the way they display images within blockquotes.<br \/>\nSome align the graphic with the indented blockquote margin; others align the image with the normal margin of paragraph text. It is a good idea to test on a variety of browsers.<\/p>\n<p><strong>&lt;div&gt;&#8230;&lt;\/div&gt;<\/strong><br \/>\nDenotes the beginning and end of a division of the page. First introduced in HTML<br \/>\n3.2 as a way to define a unique style for each division, only the alignment function (using the align attribute) was implemented by the major browsers. The &lt;div&gt; tag has proven itself enormously valuable, however, when used in conjunction with style sheets.<\/p>\n<p><strong>Attributes<\/strong><br \/>\nalign=center|left|right<br \/>\nAligns the text within the tags to the left, right, or center of the page.<\/p>\n<p><strong>&lt;hn&gt;&#8230;&lt;\/hn&gt;<\/strong><br \/>\nSpecifies that the enclosed text is a heading. There are six different levels of headings, from &lt;h1&gt; to &lt;h6&gt;, with each subsequent level displaying at a smaller size. &lt;h5&gt; and &lt;h6&gt; usually display smaller than the surrounding body text.<\/p>\n<p><strong>Attributes<\/strong><\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 7\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>align=center|left|right<\/p>\n<p>Used to align the header left, right, or centered on the page. Microsoft Internet Explorer 3.0 and earlier do not support the right alignment.<\/p>\n<p><strong>&lt;p&gt;&#8230;&lt;\/p&gt;<\/strong><br \/>\nDenotes the beginning and end of a paragraph when used as a container. Many browsers will also allow the &lt;p&gt; tag to be used without a closing tag to start a new paragraph. The container method is preferred, particularly if you are using Cascading Style Sheets with the document.<\/p>\n<p><strong>Attributes<\/strong><br \/>\nalign=center|left|right<br \/>\nAligns the text within the tags to the left, right, or center of the page.<\/p>\n<p><strong>&lt;abbr&gt;&#8230;&lt;\/abbr&gt;<\/strong><br \/>\nIdentifies the enclosed text as an abbreviation. It has no inherent effect on text display, but can be used as an element selector in a style sheet.<\/p>\n<p><strong>Attributes<\/strong><br \/>\ntitle=string<br \/>\nProvides the full expression for the abbreviation. This may be useful for nonvisual browsers and search engines.<br \/>\nExample<br \/>\n&lt;ABBR TITLE=&#8221;Massachusetts&#8221;&gt;Mass.&lt;\/ABBR&gt;<\/p>\n<p><strong>&lt;acronym&gt;&#8230;&lt;\/acronym&gt;<\/strong><br \/>\nIndicates an acronym. It has no inherent effect on text display, but can be used as an element selector in a style sheet.<\/p>\n<p><strong>Attributes<\/strong><br \/>\ntitle=string<br \/>\nProvides the full expression for the acronym. This may be useful for nonvisual browsers and search engines.<br \/>\nExample<br \/>\n&lt;ACRONYM TITLE=&#8221;World Wide Web&#8221;&gt;WWW&lt;\/ACRONYM&gt;<\/p>\n<p><strong>&lt;b&gt;&#8230;&lt;\/b&gt;<\/strong><br \/>\nEnclosed text is rendered in bold.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 8\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p><strong>&lt;big&gt;&#8230;&lt;\/big&gt;<\/strong><br \/>\nSets the type one font size larger than the surrounding text. It is equivalent to &lt;font size=&#8221;+1&#8243;&gt;.<\/p>\n<p><strong>&lt;blink&gt;&#8230;&lt;\/blink&gt;<\/strong><br \/>\nCauses the contained text to flash on and off.<\/p>\n<p><strong>&lt;cite&gt;&#8230;&lt;\/cite&gt;<\/strong><br \/>\nDenotes a citation\u2014a reference to another document, especially books, magazines, articles, etc. Browsers generally display citations in italic.<\/p>\n<p><strong>&lt;code&gt;&#8230;&lt;\/code&gt;<\/strong><br \/>\nDenotes a code sample. Code is rendered in the browser\u2019s specified monospace font (usually Courier).<\/p>\n<p><strong>&lt;del&gt;&#8230;&lt;\/del&gt;<\/strong><br \/>\nIndicates deleted text. It has no inherent style qualities on its own, but may be used to hide deleted text from view or display it as strike-through text via style sheet controls. It may be useful for legal documents and any instance where edits need to be tracked. Its counterpart is inserted text (&lt;ins&gt;). Both can be used to indicate either inline or block-level elements.<\/p>\n<p><strong>&lt;em&gt;&#8230;&lt;\/em&gt;<\/strong><br \/>\nIndicates emphasized text. Nearly all browsers render emphasized text in italic.<\/p>\n<p><strong>&lt;font&gt;&#8230;&lt;\/font&gt;<\/strong><br \/>\nUsed to affect the style (color, typeface, and size) of the enclosed text.<\/p>\n<p><strong>Attributes<\/strong><br \/>\ncolor=&#8221;#rrggbb&#8221;<br \/>\nSpecifies the color using a hexadecimal RGB value.<\/p>\n<p>face=typeface (or list of typefaces)<br \/>\nSpecifies a typeface for the text. The specified typeface will be used only if it is found on the user\u2019s machine. You may provide a list of fonts (separated by commas) and the browser will use the first available in the string.<\/p>\n<p>size=value<br \/>\nSets the size of the type to an absolute value on a scale from 1 to 7 (3 is the default), or using a relative value +n or -n (based on the default or &lt;basefont&gt; setting).<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 9\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p><strong>&lt;i&gt;&#8230;&lt;\/i&gt;<\/strong><br \/>\nEnclosed text is displayed in italic.<\/p>\n<p><strong>&lt;ins&gt;&#8230;&lt;\/ins&gt;<\/strong><br \/>\nIndicates text that has been inserted into the document. It has no inherent style qualities on its own, but may be used to indicate inserted text in a different color via style sheet controls. It may be useful for legal documents and any instance in which edits need to be tracked. Its counterpart is deleted text (&lt;del&gt;). Both can be used to indicate either inline or block-level elements.<\/p>\n<p><strong>&lt;s&gt;&#8230;&lt;\/s&gt;<\/strong><br \/>\nThe enclosed text is displayed as strike-through text (same as &lt;strike&gt; but introduced by later browser versions).<\/p>\n<p><strong>&lt;small&gt;&#8230;&lt;\/small&gt;<\/strong><br \/>\nRenders the type one font size smaller than the surrounding text. It is equivalent to &lt;font size=&#8221;- 1&#8243;&gt;.<\/p>\n<p><strong>&lt;strike&gt;&#8230;&lt;\/strike&gt;<\/strong><br \/>\nThe enclosed text is displayed as strike-through text (crossed through with a horizontal line).<\/p>\n<p><strong>&lt;strong&gt;&#8230;&lt;\/strong&gt;<\/strong><br \/>\nThe enclosed text is strongly emphasized. Nearly all browsers render &lt;strong&gt; text in bold.<\/p>\n<p><strong>&lt;sub&gt;&#8230;&lt;\/sub&gt;<\/strong><br \/>\nFormats enclosed text as subscript.<\/p>\n<p><strong>&lt;sup&gt;&#8230;&lt;\/sup&gt;<\/strong><br \/>\nFormats enclosed text as superscript.<\/p>\n<p><strong>&lt;tt&gt;&#8230;&lt;\/tt&gt;<\/strong><br \/>\nFormats enclosed text as typewriter text. The text enclosed in the &lt;tt&gt; tag will be displayed in a monospaced font such as Courier.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 10\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p><strong>&lt;u&gt;&#8230;&lt;\/u&gt;<\/strong><br \/>\nEnclosed text will be underlined when displayed.<\/p>\n<h3>Spacing and Positioning<\/h3>\n<p><strong>&lt;br&gt;<\/strong><br \/>\nBreaks the text and begins a new line, but does not add extra space as the &lt;p&gt; tag does. <strong>Attributes<\/strong><br \/>\nclear=all|left|right<br \/>\nBreaks the text flow and resumes the next line after the specified margin is clear. This is often used to start the text below an aligned image (preventing text wrap).<\/p>\n<p><strong>&lt;center&gt;&#8230;&lt;\/center&gt;<\/strong><br \/>\nCenters the enclosed text horizontally on the page (same as &lt;DIV align=center&gt;.<\/p>\n<h3>Lists<\/h3>\n<p>The following is a collection of tags used for formatting a number of different types of lists in HTML. Any list can be nested within another list.<\/p>\n<p><strong>&lt;dir&gt;&#8230;&lt;\/dir&gt;<\/strong><br \/>\nCreates a directory list consisting of list items &lt;li&gt;. Directory lists were originally designed to display lists of files with short names, but they have been deprecated with the recommendation that unordered lists (&lt;ul&gt;) be used instead. Most browsers render directory lists the same as unordered lists (with bullets), although some will use a multicolumn format.<\/p>\n<p><strong>&lt;dl&gt;&#8230;&lt;\/dl&gt;<\/strong><br \/>\nIndicates a definition list, consisting of terms (&lt;dt&gt;) and definitions (&lt;dd&gt;).<\/p>\n<p><strong>&lt;dd&gt;&#8230;&lt;\/dd&gt;<\/strong><br \/>\nDenotes the definition portion of an item within a definition list. The definition is usually displayed with an indented left margin. The closing tag is commonly omitted but should be included when applying style sheets.<\/p>\n<p><strong>&lt;dt&gt;&#8230;&lt;\/dt&gt;<\/strong><\/p>\n<p>Denotes the term portion of an item within a definition list. The closing tag is normally omitted but should be included when applying style sheets.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 11\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p><strong>&lt;li&gt;&#8230;&lt;\/li&gt;<\/strong><br \/>\nDefines an item in a list. It is used within the &lt;dir&gt;, &lt;ol&gt;, and &lt;ul&gt; list tags.<br \/>\n<strong>Attributes<\/strong><br \/>\nThe following attributes have been deprecated by the HTML 4.0 Specification in favor of style sheet controls for list item display.<br \/>\ntype=format<br \/>\nChanges the format of the automatically generated numbers or bullets for list items. Within unordered lists (&lt;ul&gt;), the type attribute can be used to specify the bullet style (disc, circle, or square) for a particular list item. Within ordered lists (&lt;ol&gt;), the type attribute specifies the numbering style (see options under &lt;ol&gt; listing below) for a particular list item.<\/p>\n<p>value=number<br \/>\nWithin ordered lists, you can specify the number (n) of an item. The following list items will increase from the specified number.<\/p>\n<p><strong>&lt;menu&gt;&#8230;&lt;\/menu&gt;<\/strong><br \/>\nThis indicates the beginning and end of a menu list, which consists of list items &lt;li&gt;. Menus are intended to be used for a list of short choices, such as a menu of links to other documents. It is little used and has been deprecated in favor of &lt;ul&gt;.<br \/>\n<strong>Attributes<\/strong><br \/>\ncompact<br \/>\nDisplays the list as small as possible (not many browsers do anything with this attribute).<\/p>\n<p>type=disc|circle|square<br \/>\nDefines the shape of the bullets used for each list item.<\/p>\n<p><strong>&lt;ol&gt;&#8230;&lt;\/ol&gt;<\/strong><br \/>\nDefines the beginning and end of an ordered list, which consists of list items &lt;li&gt;.<\/p>\n<p><strong>Attributes<\/strong><br \/>\ncompact<br \/>\nDisplays the list as small as possible (not many browsers do anything with this attribute).<\/p>\n<p>start=number<br \/>\nStarts the numbering of the list at n, instead of 1.<br \/>\ntype=1|A|a|I|i<\/p>\n<p><strong>&lt;ul&gt;&#8230;&lt;\/ul&gt;<\/strong><\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 12\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>Defines the beginning and end of an ordered list, which consists of list items &lt;li&gt;.<\/p>\n<p><strong>Attributes<\/strong><\/p>\n<p>compact<br \/>\nDisplays the listed block as small as possible. Not many browsers support this attribute.<\/p>\n<p>type=disc|circle|square<br \/>\nDefines the shape of the bullets used for each list item.<\/p>\n<h3>Creating Links<\/h3>\n<p><strong>&lt;a&gt;&#8230;&lt;\/a&gt;<\/strong><br \/>\nDefines an anchor within the document. An anchor is used to link to another document. It can also serve to label a fragment within a document (also called a named anchor), which is used as a reference for linking to a specific point in an HTML document.<\/p>\n<p><strong>Attributes<\/strong><br \/>\nhref=url<br \/>\nSpecifies the URL of the target destination.<\/p>\n<p>method=value<br \/>\nSpecifies a list of names, each representing a particular document-processing method, usually an application name. It is browser-dependent and is rarely used in practice.<\/p>\n<p><strong>Link Examples<\/strong><br \/>\n&#8211; To a local file:<br \/>\n&lt;A HREF=&#8221;filename.html&#8221;&gt;&#8230;&lt;\/A&gt;<br \/>\n&#8211; To an external file:<br \/>\n&lt;A HREF=&#8221;http:\/\/server\/path\/file.html&#8221;&gt;&#8230;&lt;\/A&gt;<br \/>\n&#8211; To a named anchor:<br \/>\n&lt;A HREF=&#8221;http:\/\/server\/path\/file.html#fragment&#8221;&gt;&#8230;&lt;\/A&gt;<br \/>\n&#8211; To a named anchor in the same file:<br \/>\n&lt;A HREF=&#8221;#fragment&#8221;&gt;&#8230;&lt;\/A&gt;<br \/>\n&#8211; To send an email message:<br \/>\n&lt;A HREF=&#8221;mailto:username@domain&#8221;&gt;&#8230;&lt;\/A&gt;<br \/>\n&#8211; To a file on an FTP server:<br \/>\n&lt;A HREF=&#8221;ftp:\/\/server\/path\/filename&#8221;&gt;&#8230;&lt;\/A&gt;<\/p>\n<p><strong>Setting Colors in &lt;body&gt;<\/strong><\/p>\n<p>Link color specifications in the &lt;body&gt; tag are applied to the whole document.<\/p>\n<p><strong>Specifying Color for a Specific Link<\/strong><\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 13\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>You can override the color of a specific link by placing &lt;font&gt; tags within the anchor tags. There is no way to set the visited link and active link colors for specific links. This feature is supported by versions 3.0 and 4.0 of Internet Explorer, but only version 4.0 of Netscape Navigator.<br \/>\n&lt;A HREF=&#8221;document.html&#8221;&gt;&lt;FONT COLOR=aqua&gt; Specially colored link&lt;\/FONT&gt;&lt;\/A&gt;<\/p>\n<p><strong>Setting Global-Link Colors with Style Sheets<\/strong><\/p>\n<p>You can apply almost any style sheet property to a link by using the anchor tag (&lt;a&gt;) as a selector. However, CSS1 introduced a group of pseudo-classes (link, Links &lt;BODY LINK=&#8221;color&#8221;&gt; Sets the color for hyperlinks. The default color for links is blue.<br \/>\nVisited links &lt;BODY VLINK=&#8221;color&#8221;&gt; Sets the colors for links that have already been clicked. The default color for visited links is purple.<\/p>\n<p>Active links &lt;BODY ALINK=&#8221;color&#8221;&gt; Sets the color for a link while it is in the process of being clicked. The default color for an active link is red.<\/p>\n<p><strong>&lt;hr&gt;<\/strong><br \/>\nAdds a horizontal rule to the page.<br \/>\n<strong>Attributes<\/strong><br \/>\nalign=center|left|right<br \/>\nIf the rule is shorter than the width of the window, this tag controls the horizontal alignment of the rule. The default is center.<\/p>\n<p>noshade<br \/>\nThis displays the rule as a solid (non-shaded) bar.<\/p>\n<p>size=number<br \/>\nSpecifies the thickness of the rule in pixels.<\/p>\n<p>width=number or %<br \/>\nSpecifies the length of the rule in pixels or as a percentage of the page width. By default, rules are the full width of the browser window.<\/p>\n<p><strong>&lt;img&gt;<\/strong><br \/>\nPlaces a graphic on the page.<br \/>\n<strong>Attributes<\/strong><br \/>\nalign=type<br \/>\nSpecifies the alignment of an image using one of the following attributes:<\/p>\n<p>Type Resulting Alignment<br \/>\nabsbottom Navigator 3.0 &amp; 4.0 and Internet Explorer 4.0 only. Aligns the bottom of the image with the bottom of the current line.<br \/>\nabsmiddle Navigator 3.0 &amp; 4.0 and Internet Explorer 4.0 only. Aligns the middle of the image with the middle of the current line. baseline Navigator 3.0 &amp; 4.0 and Internet Explorer 4.0 only. Aligns the bottom of the image with the baseline of the current line.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 14\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>bottom Aligns the bottom of the image with the text baseline. This is the default vertical alignment. center According to the W3C Spec, this centers the image horizontally on the page; however, in reality, browsers treat it the same as align=middle.<\/p>\n<div class=\"page\" title=\"Page 14\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>alt=text<br \/>\nProvides a string of alternative text that appears when the image is not displayed.<\/p>\n<p>border=number<br \/>\nSpecifies the width (in pixels) of the border that surrounds a linked image. It is standard practice to set border=0 to turn the border off.<\/p>\n<p>height=number<br \/>\nSpecifies the height of the image in pixels. It is not required but recommended to speed up the rendering of the web page.<\/p>\n<p>hspace=number<br \/>\nUsed in conjunction with the align attribute, this attribute specifies in a number of pixels the amount of space to leave clear to the left and right of the image.<\/p>\n<p class=\"p1\">If you liked our content Structured HTML Tags, then you will also like\u00a0<a href=\"https:\/\/bcisnotes.com\/fourthsemester\/css-selectors-html-css-bcis-notes\/\">CSS Selectors\u00a0<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Structural HTML Tags Structured HTML tags are like keywords define that how a web browser will format and display the content. With the help of <a class=\"mh-excerpt-more\" href=\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\" title=\"Structural HTML Tags || Review of HTML Tags || BCIS Notes\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":3,"featured_media":681,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[215,219],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Structural HTML Tags || Review of HTML Tags || BCIS Notes<\/title>\n<meta name=\"description\" content=\"Structured HTML tags are like keywords which defines how a web browser will format and display the content.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Structural HTML Tags || Review of HTML Tags || BCIS Notes\" \/>\n<meta property=\"og:description\" content=\"Structured HTML tags are like keywords which defines how a web browser will format and display the content.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\" \/>\n<meta property=\"og:site_name\" content=\"BCIS Fourth Semester\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-21T05:34:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-21T11:22:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png\" \/>\n\t<meta property=\"og:image:width\" content=\"340\" \/>\n\t<meta property=\"og:image:height\" content=\"230\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Her Highness\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Her Highness\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"15 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\"},\"author\":{\"name\":\"Her Highness\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3\"},\"headline\":\"Structural HTML Tags || Review of HTML Tags || BCIS Notes\",\"datePublished\":\"2021-04-21T05:34:15+00:00\",\"dateModified\":\"2021-04-21T11:22:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\"},\"wordCount\":3763,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png\",\"keywords\":[\"HTML\/CSS\",\"Structured HTML Tags\"],\"articleSection\":[\"IT\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\",\"name\":\"Structural HTML Tags || Review of HTML Tags || BCIS Notes\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png\",\"datePublished\":\"2021-04-21T05:34:15+00:00\",\"dateModified\":\"2021-04-21T11:22:56+00:00\",\"description\":\"Structured HTML tags are like keywords which defines how a web browser will format and display the content.\",\"breadcrumb\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png\",\"contentUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png\",\"width\":340,\"height\":230,\"caption\":\"Structural HTML Tags || Review of HTML Tags || BCIS Notes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bcisnotes.com\/fourthsemester\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Structural HTML Tags || Review of HTML Tags || BCIS Notes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#website\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/\",\"name\":\"BCIS Fourth Semester\",\"description\":\"Notes of Information and Technology\",\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bcisnotes.com\/fourthsemester\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\",\"name\":\"BCIS Fourth Semester\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg\",\"contentUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg\",\"width\":300,\"height\":100,\"caption\":\"BCIS Fourth Semester\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3\",\"name\":\"Her Highness\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g\",\"caption\":\"Her Highness\"},\"sameAs\":[\"http:\/\/bcisnotes.com\/fourthsemester\"],\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/author\/jaya\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Structural HTML Tags || Review of HTML Tags || BCIS Notes","description":"Structured HTML tags are like keywords which defines how a web browser will format and display the content.","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:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/","og_locale":"en_US","og_type":"article","og_title":"Structural HTML Tags || Review of HTML Tags || BCIS Notes","og_description":"Structured HTML tags are like keywords which defines how a web browser will format and display the content.","og_url":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/","og_site_name":"BCIS Fourth Semester","article_published_time":"2021-04-21T05:34:15+00:00","article_modified_time":"2021-04-21T11:22:56+00:00","og_image":[{"width":340,"height":230,"url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png","type":"image\/png"}],"author":"Her Highness","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Her Highness","Est. reading time":"15 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#article","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/"},"author":{"name":"Her Highness","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3"},"headline":"Structural HTML Tags || Review of HTML Tags || BCIS Notes","datePublished":"2021-04-21T05:34:15+00:00","dateModified":"2021-04-21T11:22:56+00:00","mainEntityOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/"},"wordCount":3763,"commentCount":0,"publisher":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png","keywords":["HTML\/CSS","Structured HTML Tags"],"articleSection":["IT"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/","url":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/","name":"Structural HTML Tags || Review of HTML Tags || BCIS Notes","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png","datePublished":"2021-04-21T05:34:15+00:00","dateModified":"2021-04-21T11:22:56+00:00","description":"Structured HTML tags are like keywords which defines how a web browser will format and display the content.","breadcrumb":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#primaryimage","url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png","contentUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-5.png","width":340,"height":230,"caption":"Structural HTML Tags || Review of HTML Tags || BCIS Notes"},{"@type":"BreadcrumbList","@id":"https:\/\/bcisnotes.com\/fourthsemester\/structural-html-tags-review-of-html-tags-bcis-notes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bcisnotes.com\/fourthsemester\/"},{"@type":"ListItem","position":2,"name":"Structural HTML Tags || Review of HTML Tags || BCIS Notes"}]},{"@type":"WebSite","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#website","url":"https:\/\/bcisnotes.com\/fourthsemester\/","name":"BCIS Fourth Semester","description":"Notes of Information and Technology","publisher":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bcisnotes.com\/fourthsemester\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization","name":"BCIS Fourth Semester","url":"https:\/\/bcisnotes.com\/fourthsemester\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/","url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg","contentUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg","width":300,"height":100,"caption":"BCIS Fourth Semester"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3","name":"Her Highness","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g","caption":"Her Highness"},"sameAs":["http:\/\/bcisnotes.com\/fourthsemester"],"url":"https:\/\/bcisnotes.com\/fourthsemester\/author\/jaya\/"}]}},"_links":{"self":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/680"}],"collection":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/comments?post=680"}],"version-history":[{"count":1,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/680\/revisions"}],"predecessor-version":[{"id":682,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/680\/revisions\/682"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media\/681"}],"wp:attachment":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media?parent=680"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/categories?post=680"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/tags?post=680"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}