{"id":671,"date":"2021-04-21T05:10:06","date_gmt":"2021-04-21T05:10:06","guid":{"rendered":"https:\/\/bcisnotes.com\/fourthsemester\/?p=671"},"modified":"2021-04-21T05:10:06","modified_gmt":"2021-04-21T05:10:06","slug":"introduction-to-html-html-css-bcis-notes","status":"publish","type":"post","link":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/","title":{"rendered":"Introduction to HTML || HTML\/CSS || BCIS Notes"},"content":{"rendered":"<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h1 style=\"text-align: center;\">Introduction to HTML<\/h1>\n<p><strong>HTML (Hypertext Markup Language)<\/strong> is the language used to create web documents. It defines the syntax and placement of special instructions (tags) that aren\u2019t displayed but tell the browser how to display the document\u2019s contents. It is also used to create links to other documents, either locally or over a network such as the Internet.<\/p>\n<p>The HTML standard and all other Web-related standards are developed under the authority of the World Wide Web Consortium (W3C).<\/p>\n<\/div>\n<p><strong>Basic Structure of HTML<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-8132 aligncenter\" src=\"https:\/\/www.onlinenotesnepal.com\/wp-content\/uploads\/2021\/03\/Screen-Shot-2021-03-30-at-1.44.11-PM.png\" alt=\"Basic Structure of HTML\" width=\"285\" height=\"183\" \/><\/p>\n<\/div>\n<\/div>\n<ul>\n<li>The\u00a0<code class=\"w3-codespan\">&lt;!DOCTYPE html&gt;<\/code> the declaration defines that this document as an HTML5 document<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">&lt;html&gt;<\/code> element is the root element of an HTML page.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">&lt;head&gt;<\/code> the element contains meta-information about the HTML page.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">&lt;title&gt;<\/code> the element specifies a title for the HTML page (which is shown in the browser&#8217;s title bar or in the page&#8217;s tab).<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">&lt;body&gt;<\/code> the element defines the document&#8217;s body and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">&lt;h1&gt;<\/code> the element defines a large heading.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">&lt;p&gt;<\/code> the element defines a paragraph.<\/li>\n<\/ul>\n<p>The HTML file is always saved in .html format.<\/p>\n<h2>HTML Element<\/h2>\n<p>An HTML element is defined by a start tag, some content, and an end tag:<\/p>\n<div>&lt;tagname&gt;Here you write the content.&lt;\/tagname&gt;<\/div>\n<p>The HTML\u00a0<strong>element<\/strong>\u00a0is everything from the start tag to the end tag:<\/p>\n<div>&lt;h1&gt;My First Heading&lt;\/h1&gt;<\/div>\n<div>&lt;p&gt;My first paragraph.&lt;\/p&gt;<\/div>\n<div><\/div>\n<div>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h2>HTML Tags<\/h2>\n<p>Every HTML tag is made up of a tag name, sometimes followed by an optional list of attributes, all of which appear between angle brackets &lt; &gt;. Nothing within the brackets will be displayed in the browser. The tag name is generally an abbreviation of the tag\u2019s function (this makes them fairly simple to learn). Attributes are properties that extend or refine the tag\u2019s function.<\/p>\n<p>The name and attributes within a tag are not case-sensitive. &lt;BODY BGCOLOR=white&gt; will work the same as &lt;body bgcolor=white&gt;. However, values for particular attributes may be case sensitive, particularly URLs and filenames.<\/p>\n<p>There are two types of tags:<\/p>\n<h3>1. Containers<\/h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>Most HTML tags are containers, meaning they have a beginning (also called \u201copener\u201d or \u201cstart\u201d) tag and an end tag. The text enclosed within the tags will follow the tag\u2019s instructions, as in the following example:<\/p>\n<p>The weather is &lt;I&gt;gorgeous&lt;\/I&gt; today. Result: The weather is gorgeous today.<\/p>\n<p>An end tag contains the same name as the start tag, but it is preceded by a slash (\/). You can think of it as an \u201coff\u201d switch for the tag. End tags never contain attributes. For some tags, the end tag is optional and the browser determines when the tag ends by context. This practice is most common with the &lt;p&gt; (paragraph) tag.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<h3>2. Standalone tags<\/h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>A few tags do not have end tags because they are used to place standalone elements on the page. The image tag (&lt;img&gt;) is such a tag and it simply plops a graphic into the flow of the page. Other standalone tags include the line break (&lt;br&gt;), horizontal rule (&lt;hr&gt;), and tags that provide information about a document and don\u2019t affect its displayed content, such as the &lt;meta&gt; and base&gt; tags.<\/p>\n<h2>HTML Attributes<\/h2>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>Attributes are added within a tag to extend or modify the tag\u2019s actions. You can add multiple attributes within a single tag. Tag attributes, if any, belong after the tag name, each separated by one or more spaces. Their order of appearance is not important.<\/p>\n<ul>\n<li>All HTML elements can have\u00a0<strong>attributes.\u00a0<\/strong><\/li>\n<li>The\u00a0<code class=\"w3-codespan\">href<\/code>\u00a0attribute of\u00a0<code class=\"w3-codespan\">&lt;a&gt;<\/code> specifies the URL of the page the link goes to.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">src<\/code>\u00a0attribute of\u00a0<code class=\"w3-codespan\">&lt;img&gt;<\/code> specifies the path to the image to be displayed.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">width<\/code>\u00a0and\u00a0<code class=\"w3-codespan\">height<\/code>\u00a0attributes of\u00a0<code class=\"w3-codespan\">&lt;img&gt;<\/code> provide size information for images.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">alt<\/code>\u00a0attribute of\u00a0<code class=\"w3-codespan\">&lt;img&gt;<\/code> provides an alternate text for an image.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">style<\/code> the attribute is used to add styles to an element, such as color, font, size, and more.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">lang<\/code>\u00a0attribute of the\u00a0<code class=\"w3-codespan\">&lt;html&gt;<\/code> tag declares the language of the Web page.<\/li>\n<li>The\u00a0<code class=\"w3-codespan\">title<\/code> an attribute defines some extra information about an element.<\/li>\n<\/ul>\n<p>The following are examples of tags that contain attributes:<\/p>\n<p>&lt;IMG SRC=&#8221;graphics\/pixie.gif&#8221; ALIGN=right WIDTH=45 HEIGHT=60&gt; &lt;BODY BGCOLOR=&#8221;#000000&#8243;&gt;<br \/>\n&lt;FONT FACE=&#8221;Trebuchet MS, Arial, Helvetica&#8221; SIZE=4&gt;<\/p>\n<p class=\"p1\" style=\"text-align: left;\">If you liked our content Introduction to HTML, then you may also like\u00a0<a href=\"https:\/\/bcisnotes.com\/fourthsemester\/client-server-architecture-web-environment-bcis-notes\/\">Client-Server Architecture<\/a><\/p>\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>Introduction to HTML HTML (Hypertext Markup Language) is the language used to create web documents. It defines the syntax and placement of special instructions (tags) <a class=\"mh-excerpt-more\" href=\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/\" title=\"Introduction to HTML || HTML\/CSS || BCIS Notes\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":3,"featured_media":672,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[212,213,214,215,216],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Introduction to HTML || HTML\/CSS || BCIS Notes<\/title>\n<meta name=\"description\" content=\"HTML (Hypertext Markup Language) is the language used to create web documents. HTML is the standard markup language.\" \/>\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\/introduction-to-html-html-css-bcis-notes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction to HTML || HTML\/CSS || BCIS Notes\" \/>\n<meta property=\"og:description\" content=\"HTML (Hypertext Markup Language) is the language used to create web documents. HTML is the standard markup language.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/\" \/>\n<meta property=\"og:site_name\" content=\"BCIS Fourth Semester\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-21T05:10:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/\"},\"author\":{\"name\":\"Her Highness\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3\"},\"headline\":\"Introduction to HTML || HTML\/CSS || BCIS Notes\",\"datePublished\":\"2021-04-21T05:10:06+00:00\",\"dateModified\":\"2021-04-21T05:10:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/\"},\"wordCount\":756,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png\",\"keywords\":[\"HTML\",\"HTML Attributes\",\"HTML Elements\",\"HTML\/CSS\",\"Introduction of HTML\"],\"articleSection\":[\"IT\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/\",\"name\":\"Introduction to HTML || HTML\/CSS || BCIS Notes\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png\",\"datePublished\":\"2021-04-21T05:10:06+00:00\",\"dateModified\":\"2021-04-21T05:10:06+00:00\",\"description\":\"HTML (Hypertext Markup Language) is the language used to create web documents. HTML is the standard markup language.\",\"breadcrumb\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png\",\"contentUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png\",\"width\":340,\"height\":230,\"caption\":\"Introduction to HTML || HTML\/CSS || BCIS Notes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bcisnotes.com\/fourthsemester\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introduction to HTML || HTML\/CSS || 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":"Introduction to HTML || HTML\/CSS || BCIS Notes","description":"HTML (Hypertext Markup Language) is the language used to create web documents. HTML is the standard markup language.","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\/introduction-to-html-html-css-bcis-notes\/","og_locale":"en_US","og_type":"article","og_title":"Introduction to HTML || HTML\/CSS || BCIS Notes","og_description":"HTML (Hypertext Markup Language) is the language used to create web documents. HTML is the standard markup language.","og_url":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/","og_site_name":"BCIS Fourth Semester","article_published_time":"2021-04-21T05:10:06+00:00","og_image":[{"width":340,"height":230,"url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png","type":"image\/png"}],"author":"Her Highness","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Her Highness","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#article","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/"},"author":{"name":"Her Highness","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3"},"headline":"Introduction to HTML || HTML\/CSS || BCIS Notes","datePublished":"2021-04-21T05:10:06+00:00","dateModified":"2021-04-21T05:10:06+00:00","mainEntityOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/"},"wordCount":756,"commentCount":0,"publisher":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png","keywords":["HTML","HTML Attributes","HTML Elements","HTML\/CSS","Introduction of HTML"],"articleSection":["IT"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/","url":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/","name":"Introduction to HTML || HTML\/CSS || BCIS Notes","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png","datePublished":"2021-04-21T05:10:06+00:00","dateModified":"2021-04-21T05:10:06+00:00","description":"HTML (Hypertext Markup Language) is the language used to create web documents. HTML is the standard markup language.","breadcrumb":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#primaryimage","url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png","contentUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-2.png","width":340,"height":230,"caption":"Introduction to HTML || HTML\/CSS || BCIS Notes"},{"@type":"BreadcrumbList","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-html-html-css-bcis-notes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bcisnotes.com\/fourthsemester\/"},{"@type":"ListItem","position":2,"name":"Introduction to HTML || HTML\/CSS || 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\/671"}],"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=671"}],"version-history":[{"count":1,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/671\/revisions"}],"predecessor-version":[{"id":673,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/671\/revisions\/673"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media\/672"}],"wp:attachment":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media?parent=671"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/categories?post=671"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/tags?post=671"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}