{"id":686,"date":"2021-04-21T05:39:25","date_gmt":"2021-04-21T05:39:25","guid":{"rendered":"https:\/\/bcisnotes.com\/fourthsemester\/?p=686"},"modified":"2021-04-21T05:39:25","modified_gmt":"2021-04-21T05:39:25","slug":"xml-introduction-to-xml-and-xhtml-onlinenotesnepal","status":"publish","type":"post","link":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/","title":{"rendered":"XML || Introduction to XML and XHTML || OnlineNotesNepal"},"content":{"rendered":"<h1 style=\"text-align: center;\">XML (Extensible Markup Language)<\/h1>\n<p>XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is a promising new customizable markup language that will allow for complex information transactions on the Internet. Many companies such as Microsoft and Netscape have developed or are developing XML technologies.<\/p>\n<p>HTML is designed for content being sent to a browser but isn\u2019t good for sending content to other mediums like a printer or a ticker. XML allows developers to create a custom markup language specific to their needs. Specially coded XML documents reside on a server and can be converted to HTML and read by browsers. Other clients (including future browsers that are XML-compliant) can access the XML documents directly and use the content for a variety of purposes.<\/p>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>Background<\/h3>\n<p>Although XML is a markup language like HTML, a common misconception is that it is HTML on steroids. XML and HTML are related, but through a common parent, SGML, Standard General Markup Language. SGML is a meta-language\u2014a comprehensive set of syntax rules for marking up documents and data.<\/p>\n<p>When the creators of the Web needed a markup language that told browsers how to display web content, they used SGML guidelines to create HTML. HTML was designed specifically for displaying content in a browser but isn\u2019t good for much else.<\/p>\n<p>Now that the Web has matured and we are using it for more than just viewing text and images, we need to create more versatile markup languages. We could use SGML as we did when creating HTML, but SGML wasn\u2019t designed for the Web. It is too bloated in that it has features that are unnecessary and wouldn\u2019t be used.<\/p>\n<p>Also, SGML documents themselves are too large and would unnecessarily take up much of the Web\u2019s bandwidth. Clearly, a more portable, Web-specific version of SGML had to be created. Thus XML is SGML\u2019s smaller cousin. XML is SGML with a reduced feature set. It is powerful enough to describe data but light enough to travel across the Web.<\/p>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>Document Type Definition (DTD)<\/h3>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>Another important part of XML is the Document Type Definition (DTD), which defines each tag and provides more information about each tag or the document in general. A DTD can be part of an XML file itself, but it is usually a separate file or series of files. The DTD is what turns XML from a meta-language into a true language designed for a specific task. It\u2019s a type of file associated with SGML and XML documents that define how markup tags should be interpreted by the application reading the document.<\/p>\n<p>The HTML Specification that defines how web pages should be displayed by a browser is one example of a DTD. Other emerging technologies, such as the proposed multimedia standard SMIL and the proposed vector graphics standard PGML (both discussed later in this chapter), use DTDs that were created in compliance with the XML meta-language. If you were creating recipes that could be accessed over the Web, you might create your own language called RML or Recipe Markup Language. RML would have tags like &lt;title&gt; and &lt;body&gt;, but would also have RML specific tags such as &lt;ingredients&gt;, &lt;prep-time&gt;, and &lt;nutritional-information&gt;.<\/p>\n<p>These tags would be established in a DTD for the new language. The DTD imparts detailed information about what data should be found in each tag. A DTD for Recipe Markup Language might have a line like this:<\/p>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p><strong>&lt;!ELEMENT ingredients ( li+, text? )&gt;<\/strong><\/p>\n<p>The first line declares an element called ingredients. An ingredients tag can contain a li element and text. The plus sign (+) after li indicates that an \u201cingredients\u201d element will have one or more \u201cli\u201d elements within it. The question mark after text shows that text is optional. The Recipe Markup Language DTD would also specify the \u201cli\u201d element:<\/p>\n<p><strong>&lt;!ELEMENT li (#PCDATA)&gt;<\/strong><\/p>\n<p>This element contains text only. It doesn\u2019t have to be associated with a DTD. You can simply mark up a document, and assume the person reading your XML file already has the proper DTD or will make up their own. Because it doesn\u2019t require a DTD, you can turn your existing DTD-less HTML files into XML by making a few changes.<\/p>\n<h3>XML Syntax Basics<\/h3>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 3\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>Browsers will often recover from sloppily written or illegal HTML. This won\u2019t be the case with XML documents. A client reading an XML document may be reading tags unique to that document and therefore can\u2019t make assumptions about whether or not a tag should be closed. Every XML element must be closed.<\/p>\n<p>Like HTML, XML tags cannot overlap. Overlapping tags look like this:<\/p>\n<p>&lt;Element1&gt;&lt;Element2&gt;This is content contained&lt;\/Element1&gt; in overlapping tags&lt;\/Element2&gt;<\/p>\n<p>In the above example, it is unclear whether the text, \u201cThis is content contained\u201d is an Element 1 or Element 2. To avoid such confusion, an XML document cannot contain overlapping tags. The above example should be written like this:<\/p>\n<p>&lt;Element1&gt;&lt;Element2&gt;This is content contained&lt;\/Element2&gt;&lt;\/Element1&gt; &lt;Element2&gt; in overlapping tags&lt;\/Element2&gt;<\/p>\n<p>With this code, there is no question as to which tags or objects are contained within others.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Turning Existing HTML Documents into XML<\/strong><\/p>\n<p>Because HTML and XML are closely related, it isn\u2019t difficult to make an HTML document XML-compliant. You basically have to make sure your HTML is \u201cwellformed.\u201d<\/p>\n<p>\u2022 Replace the DOCTYPE declaration and any internal subset with the XML declaration.<\/p>\n<p>Replace:<\/p>\n<p>&lt;!DOCTYPE HTML &#8230;&gt; with:<\/p>\n<p>&lt;?xml version=&#8221;1.0&#8243; standalone=&#8221;yes&#8221;?&gt;<\/p>\n<p>\u2022 Change any empty elements such as &lt;isindex&gt;, &lt;base&gt;, &lt;meta&gt;, &lt;img&gt;, &lt;br&gt;, &lt;hr&gt;, or &lt;spacer&gt; so they end with \/&gt;, for example:<\/p>\n<p>&lt;IMG SRC=&#8221;this_photo.jpg&#8221; alt=&#8221;Photo&#8221;\/&gt;<\/p>\n<p>These elements may require some experimentation. For instance, some browsers treat &lt;\/br&gt; or &lt;\/hr&gt; the same as &lt;br&gt; or &lt;hr&gt;. Others will accept \/&gt; if there is a space before it, but not otherwise.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 4\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>\u2022 Make sure that each nonempty element has a correctly matched end-tag; every &lt;p&gt; must have a &lt;\/p&gt;.<\/p>\n<p>\u2022 Escape all markup characters. (&lt; and &amp; should be written as &amp;lt; and &amp;amp;). \u2022 Make sure all attribute values are in quotes.<\/p>\n<p>\u2022 Ensure all element names match with respect to upper- and lowercase characters in both start and end tags and are consistent throughout the file.<\/p>\n<p>\u2022 Ensure all attribute tags are similarly in a consistent case throughout the file.<\/p>\n<p>\u2022 Make sure there are no overlapping tags. Each tag should completely contain any tags within it.<\/p>\n<p class=\"p1\">If you liked our content XML, then you may also like\u00a0<a href=\"https:\/\/bcisnotes.com\/fourthsemester\/other-html-tags-review-of-html-tags-bcis-notes\/\">Other HTML Tags\u00a0<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>XML (Extensible Markup Language) XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is <a class=\"mh-excerpt-more\" href=\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\" title=\"XML || Introduction to XML and XHTML || OnlineNotesNepal\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":3,"featured_media":687,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[222,221],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>XML || Introduction to XML and XHTML || OnlineNotesNepal<\/title>\n<meta name=\"description\" content=\"XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is a promising new customizable markup language that will allow for complex information transactions on the Internet.\" \/>\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\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"XML || Introduction to XML and XHTML || OnlineNotesNepal\" \/>\n<meta property=\"og:description\" content=\"XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is a promising new customizable markup language that will allow for complex information transactions on the Internet.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\" \/>\n<meta property=\"og:site_name\" content=\"BCIS Fourth Semester\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-21T05:39:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\"},\"author\":{\"name\":\"Her Highness\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3\"},\"headline\":\"XML || Introduction to XML and XHTML || OnlineNotesNepal\",\"datePublished\":\"2021-04-21T05:39:25+00:00\",\"dateModified\":\"2021-04-21T05:39:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\"},\"wordCount\":1154,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png\",\"keywords\":[\"Introduction to XML and XHTML\",\"XML\"],\"articleSection\":[\"IT\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\",\"name\":\"XML || Introduction to XML and XHTML || OnlineNotesNepal\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png\",\"datePublished\":\"2021-04-21T05:39:25+00:00\",\"dateModified\":\"2021-04-21T05:39:25+00:00\",\"description\":\"XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is a promising new customizable markup language that will allow for complex information transactions on the Internet.\",\"breadcrumb\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png\",\"contentUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png\",\"width\":340,\"height\":230,\"caption\":\"XML || Introduction to XML and XHTML || OnlineNotesNepal\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bcisnotes.com\/fourthsemester\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"XML || Introduction to XML and XHTML || OnlineNotesNepal\"}]},{\"@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":"XML || Introduction to XML and XHTML || OnlineNotesNepal","description":"XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is a promising new customizable markup language that will allow for complex information transactions on the Internet.","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\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/","og_locale":"en_US","og_type":"article","og_title":"XML || Introduction to XML and XHTML || OnlineNotesNepal","og_description":"XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is a promising new customizable markup language that will allow for complex information transactions on the Internet.","og_url":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/","og_site_name":"BCIS Fourth Semester","article_published_time":"2021-04-21T05:39:25+00:00","og_image":[{"width":340,"height":230,"url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png","type":"image\/png"}],"author":"Her Highness","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Her Highness","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#article","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/"},"author":{"name":"Her Highness","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3"},"headline":"XML || Introduction to XML and XHTML || OnlineNotesNepal","datePublished":"2021-04-21T05:39:25+00:00","dateModified":"2021-04-21T05:39:25+00:00","mainEntityOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/"},"wordCount":1154,"commentCount":0,"publisher":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png","keywords":["Introduction to XML and XHTML","XML"],"articleSection":["IT"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/","url":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/","name":"XML || Introduction to XML and XHTML || OnlineNotesNepal","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png","datePublished":"2021-04-21T05:39:25+00:00","dateModified":"2021-04-21T05:39:25+00:00","description":"XML (Extensible Markup Language) is a new standard that has recently been approved by the World Wide Web Consortium. It is a promising new customizable markup language that will allow for complex information transactions on the Internet.","breadcrumb":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#primaryimage","url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png","contentUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-7.png","width":340,"height":230,"caption":"XML || Introduction to XML and XHTML || OnlineNotesNepal"},{"@type":"BreadcrumbList","@id":"https:\/\/bcisnotes.com\/fourthsemester\/xml-introduction-to-xml-and-xhtml-onlinenotesnepal\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bcisnotes.com\/fourthsemester\/"},{"@type":"ListItem","position":2,"name":"XML || Introduction to XML and XHTML || OnlineNotesNepal"}]},{"@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\/686"}],"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=686"}],"version-history":[{"count":1,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/686\/revisions"}],"predecessor-version":[{"id":688,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/686\/revisions\/688"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media\/687"}],"wp:attachment":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media?parent=686"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/categories?post=686"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/tags?post=686"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}