{"id":1331,"date":"2025-03-18T14:19:14","date_gmt":"2025-03-18T14:19:14","guid":{"rendered":"https:\/\/www.xopsschool.com\/tutorials\/?p=1331"},"modified":"2025-05-21T13:20:33","modified_gmt":"2025-05-21T13:20:33","slug":"what-is-html","status":"publish","type":"post","link":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/","title":{"rendered":"What is HTML?"},"content":{"rendered":"\n<p>HTML (<strong>HyperText Markup Language<\/strong>) is the standard language used to create and structure web pages. It allows you to define the layout and organization of content on the web. HTML is made up of a series of elements or tags, such as <strong><code>&lt;h1&gt;<\/code>, <code>&lt;p&gt;<\/code>, <code>&lt;div&gt;<\/code>,<\/strong> and more, that instruct the web browser on how to display the content. These tags are typically written in pairs: an opening tag and a closing tag, with content in between.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;h1&gt;Welcome to My First Website&lt;\/h1&gt;\n&lt;p&gt;This is a paragraph of text.&lt;\/p&gt;\n<\/code><\/pre>\n\n\n\n<p>HTML is essential for building the structure of a webpage, including headings, paragraphs, links, images, and other elements.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8\" alt=\"\"\/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>Setting Up Your Environment<\/strong><\/h1>\n\n\n\n<p>To start coding HTML, you need:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>A Text Editor<\/strong>: You can use any text editor like Notepad (Windows), TextEdit (Mac), or a code editor like Visual Studio Code, Sublime Text, or Atom.<\/li>\n\n\n\n<li><strong>A Web Browser<\/strong>: Google Chrome, Mozilla Firefox, or any browser will be fine to view your HTML files.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>Basic Structure of HTML<\/strong><\/h1>\n\n\n\n<p>An HTML document starts with a <code>DOCTYPE<\/code> declaration and is wrapped in <code>&lt;html&gt;<\/code> tags. The basic structure looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;First WebPage&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n\n&lt;h1&gt;Hello World&lt;\/h1&gt;\n&lt;p&gt;My first paragraph.&lt;\/p&gt;\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p> <strong><code>&lt;html&gt;<\/code><\/strong>: The root element of the document. <\/p>\n\n\n\n<p><strong><code>&lt;head&gt;<\/code><\/strong>: Contains metadata like the title, character set, and other important info.<\/p>\n\n\n\n<p> <strong><code>&lt;body&gt;<\/code><\/strong>: The content of the web page goes here.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>What is an HTML Tag?<\/strong><\/h1>\n\n\n\n<p>An <strong>HTML tag<\/strong> is a special keyword enclosed within angle brackets <strong>(<code>&lt;&gt;<\/code>).<\/strong> It defines the structure and elements of a webpage, such as headings, paragraphs, images, and links.<\/p>\n\n\n\n<p><strong><code>&lt;h1&gt;<\/code> to <code>&lt;h6&gt;<\/code><\/strong>: Headers for different levels of content. <\/p>\n\n\n\n<p><strong><code>&lt;p&gt;<\/code><\/strong>: Paragraph tag. <\/p>\n\n\n\n<p><strong><code>&lt;a&gt;<\/code><\/strong>: Anchor tag for creating links. <\/p>\n\n\n\n<p><strong><code>&lt;img&gt;<\/code><\/strong>: Image tag to embed images. <\/p>\n\n\n\n<p><strong><code>&lt;ul&gt;<\/code> and <code>&lt;ol&gt;<\/code><\/strong>: Lists (unordered and ordered).<\/p>\n\n\n\n<p> <strong><code>&lt;div&gt;<\/code> and <code>&lt;span&gt;<\/code><\/strong>: Containers for grouping content.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/miro.medium.com\/v2\/resize:fit:897\/1*7wzysqclJLByh6qT1yqAnQ.png\" alt=\"\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Example of using these tags:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;h1&gt;This is a Heading&lt;\/h1&gt;\n&lt;p&gt;This is a paragraph of text.&lt;\/p&gt;\n&lt;a href=\"https:\/\/www.example.com\"&gt;Click here to visit Example.com&lt;\/a&gt;\n&lt;img src=\"image.jpg\" alt=\"An example image\"&gt;\n&lt;ul&gt;\n    &lt;li&gt;Item 1&lt;\/li&gt;\n    &lt;li&gt;Item 2&lt;\/li&gt;\n    &lt;li&gt;Item 3&lt;\/li&gt;\n&lt;\/ul&gt;\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>Attributes in HTML Tags<\/strong><\/h1>\n\n\n\n<p>HTML elements often use attributes to provide additional information. Attributes are always specified inside the opening tag.<\/p>\n\n\n\n<p>Example of attributes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;a href=\"https:\/\/www.example.com\" target=\"_blank\"&gt;Visit Example.com&lt;\/a&gt;\n&lt;img src=\"image.jpg\" alt=\"A beautiful scenery\" width=\"500\"&gt;\n<\/code><\/pre>\n\n\n\n<p><strong><code>href<\/code><\/strong>: Specifies the link\u2019s destination. <\/p>\n\n\n\n<p><strong><code>target=\"_blank\"<\/code><\/strong>: Opens the link in a new tab. <\/p>\n\n\n\n<p><strong><code>src<\/code><\/strong>: Specifies the image source. <\/p>\n\n\n\n<p><strong><code>alt<\/code><\/strong>: Provides alternative text if the image cannot be displayed. <\/p>\n\n\n\n<p><strong><code>width<\/code><\/strong>: Specifies the width of the image.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/blogger.googleusercontent.com\/img\/b\/R29vZ2xl\/AVvXsEhBqu3cH2oB-VuLfDSvfslY2Na2iby5yiwpRyoEM9rpeVuOPegZpDyta64CLRnyy65dOdRVjPk0_vnahNwfR6KaZMJg0xehHeDU7HBpZf-Uw3xHbUnwiS9OTtWTSc9UG3DZ3_EI1_8iL68\/s1600\/html-syntax.png\" alt=\"\"\/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>Working with Forms<\/strong><\/h1>\n\n\n\n<p>Forms are an important part of HTML. They allow users to input data. A basic form looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;form action=\"\/submit_form\" method=\"POST\"&gt;\n    &lt;label for=\"name\"&gt;Name:&lt;\/label&gt;\n    &lt;input type=\"text\" id=\"name\" name=\"name\" required&gt;\n    &lt;br&gt;&lt;br&gt;\n    &lt;label for=\"email\"&gt;Email:&lt;\/label&gt;\n    &lt;input type=\"email\" id=\"email\" name=\"email\" required&gt;\n    &lt;br&gt;&lt;br&gt;\n    &lt;input type=\"submit\" value=\"Submit\"&gt;\n&lt;\/form&gt;\n<\/code><\/pre>\n\n\n\n<p><strong><code>&lt;form&gt;<\/code><\/strong>: Wraps the form elements. <\/p>\n\n\n\n<p><strong><code>&lt;label&gt;<\/code><\/strong>: Describes a form element. <\/p>\n\n\n\n<p><strong><code>&lt;input&gt;<\/code><\/strong>: Creates an input field for the user to fill in. <\/p>\n\n\n\n<p><strong><code>&lt;textarea&gt;<\/code><\/strong>: Used for multiline text inputs (like comments or descriptions).<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n","protected":false},"excerpt":{"rendered":"<p>HTML (HyperText Markup Language) is the standard language used to create and structure web pages. It allows you to define the layout and organization of content on the web. HTML is made up of a series of elements or tags, such as &lt;h1&gt;, &lt;p&gt;, &lt;div&gt;, and more, that instruct the web browser on how to &#8230; <a title=\"What is HTML?\" class=\"read-more\" href=\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\" aria-label=\"Read more about What is HTML?\">Read more<\/a><\/p>\n","protected":false},"author":200020,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,1],"tags":[],"class_list":["post-1331","post","type-post","status-publish","format-standard","hentry","category-html-tutorial","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is HTML? - XOps Tutorials!!!<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is HTML? - XOps Tutorials!!!\" \/>\n<meta property=\"og:description\" content=\"HTML (HyperText Markup Language) is the standard language used to create and structure web pages. It allows you to define the layout and organization of content on the web. HTML is made up of a series of elements or tags, such as &lt;h1&gt;, &lt;p&gt;, &lt;div&gt;, and more, that instruct the web browser on how to ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\" \/>\n<meta property=\"og:site_name\" content=\"XOps Tutorials!!!\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-18T14:19:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-21T13:20:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8\" \/>\n<meta name=\"author\" content=\"Pritesh Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pritesh Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\"},\"author\":{\"name\":\"Pritesh Kumar\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/121833f332dc4a3674d2904cface44f1\"},\"headline\":\"What is HTML?\",\"datePublished\":\"2025-03-18T14:19:14+00:00\",\"dateModified\":\"2025-05-21T13:20:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\"},\"wordCount\":365,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8\",\"articleSection\":[\"HTML Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\",\"name\":\"What is HTML? - XOps Tutorials!!!\",\"isPartOf\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8\",\"datePublished\":\"2025-03-18T14:19:14+00:00\",\"dateModified\":\"2025-05-21T13:20:33+00:00\",\"author\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/121833f332dc4a3674d2904cface44f1\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage\",\"url\":\"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8\",\"contentUrl\":\"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.xopsschool.com\/tutorials\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is HTML?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#website\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/\",\"name\":\"XOps Tutorials!!!\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.xopsschool.com\/tutorials\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/121833f332dc4a3674d2904cface44f1\",\"name\":\"Pritesh Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g\",\"caption\":\"Pritesh Kumar\"},\"description\":\"Devops Engineer at Cotocus pvt.ltd\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/author\/priteshcotocus\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is HTML? - XOps Tutorials!!!","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:\/\/www.xopsschool.com\/tutorials\/what-is-html\/","og_locale":"en_US","og_type":"article","og_title":"What is HTML? - XOps Tutorials!!!","og_description":"HTML (HyperText Markup Language) is the standard language used to create and structure web pages. It allows you to define the layout and organization of content on the web. HTML is made up of a series of elements or tags, such as &lt;h1&gt;, &lt;p&gt;, &lt;div&gt;, and more, that instruct the web browser on how to ... Read more","og_url":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/","og_site_name":"XOps Tutorials!!!","article_published_time":"2025-03-18T14:19:14+00:00","article_modified_time":"2025-05-21T13:20:33+00:00","og_image":[{"url":"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8","type":"","width":"","height":""}],"author":"Pritesh Kumar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Pritesh Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#article","isPartOf":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/"},"author":{"name":"Pritesh Kumar","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/121833f332dc4a3674d2904cface44f1"},"headline":"What is HTML?","datePublished":"2025-03-18T14:19:14+00:00","dateModified":"2025-05-21T13:20:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/"},"wordCount":365,"commentCount":0,"image":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage"},"thumbnailUrl":"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8","articleSection":["HTML Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/","url":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/","name":"What is HTML? - XOps Tutorials!!!","isPartOf":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage"},"image":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage"},"thumbnailUrl":"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8","datePublished":"2025-03-18T14:19:14+00:00","dateModified":"2025-05-21T13:20:33+00:00","author":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/121833f332dc4a3674d2904cface44f1"},"breadcrumb":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#primaryimage","url":"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8","contentUrl":"https:\/\/lh7-us.googleusercontent.com\/WqrPPrutd_FF1k1Y68R58IZlnP6Cw4IggfMCUxRKs15oYJuJagX3jnU7rYuW2p_TUWEccfQGGQaRSEezKTKfsz-Zd-1eQmxmU69icsJDRWiAXMsdeiIf21Z49S8JeUhr1Gqqm_TOYQlJIP7GaRNN5I8"},{"@type":"BreadcrumbList","@id":"https:\/\/www.xopsschool.com\/tutorials\/what-is-html\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.xopsschool.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"What is HTML?"}]},{"@type":"WebSite","@id":"https:\/\/www.xopsschool.com\/tutorials\/#website","url":"https:\/\/www.xopsschool.com\/tutorials\/","name":"XOps Tutorials!!!","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xopsschool.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/121833f332dc4a3674d2904cface44f1","name":"Pritesh Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g","caption":"Pritesh Kumar"},"description":"Devops Engineer at Cotocus pvt.ltd","url":"https:\/\/www.xopsschool.com\/tutorials\/author\/priteshcotocus\/"}]}},"_links":{"self":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/1331","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/users\/200020"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/comments?post=1331"}],"version-history":[{"count":3,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/1331\/revisions"}],"predecessor-version":[{"id":1357,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/1331\/revisions\/1357"}],"wp:attachment":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/media?parent=1331"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/categories?post=1331"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/tags?post=1331"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}