{"id":16649,"date":"2024-06-14T09:09:04","date_gmt":"2024-06-14T03:39:04","guid":{"rendered":"https:\/\/www.h2kinfosys.com\/blog\/?p=16649"},"modified":"2024-06-14T09:10:48","modified_gmt":"2024-06-14T03:40:48","slug":"what-is-html","status":"publish","type":"post","link":"https:\/\/www.h2kinfosys.com\/blog\/what-is-html\/","title":{"rendered":"What IS HTML?"},"content":{"rendered":"\n<p>HTML<strong>&nbsp;<\/strong>stands for<strong>&nbsp;<\/strong>Hypertext Mark-up Language. It is the language which is used to create and design web pages on the internet.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Some of the key reasons of learning HTML are listed here:<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>HTML gives the primary skeleton of every web page which tells the browsers how to give out the text, images, links, videos, and other elements also.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u00a0HTML is renowned for its beginner-friendliness. It does not have complicated tags and the syntax which will make it place to start our web development journey.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mastering the HTML will be the initial step towards the learning more and more complex web technologies like CSS (for styling) and also the JavaScript (for interactivity).<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It will empower you to build the websites, email templates, newsletters, and much more.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This will\u00a0allow us to bring the ideas to the life online, fostering a fun outlet for creativity and also the design.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What are the <\/strong><strong>Features of HTML?<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It is quite easy to learn and also easy to use.<\/li>\n\n\n\n<li>Its the platform-independent.<\/li>\n\n\n\n<li>Images and videos and audio can be inserted to the web pages<\/li>\n\n\n\n<li>Hypertext can be added\u00a0<\/li>\n\n\n\n<li>It is a mark-up language.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>HTML Elements and HTML Tags:<\/strong><\/h3>\n\n\n\n<p>HTML will make use of the predefined&nbsp;tags&nbsp;and also the&nbsp;elements&nbsp;that will instruct the browser on how to get the content. HTML elements which will consist the opening tag, and some content, and a the closing tag will be consisted.<\/p>\n\n\n\n<p>Primarily thing to remember is, to include the closing tags. If it gets failed then the browser applies the effect of the opening tag until the end of the page.<\/p>\n\n\n\n<p>This is the basic structure of an HTML page, which will include the essential building-block elements like doctype declaration, HTML, head, title, and body elements.<\/p>\n\n\n\n<p>The basic structure of the HTML page is shown below. This will consist the essential building-block of elements i.e. doctype declaration, and the HTML, and head, and the title, and body elements where all the web pages are created<\/p>\n\n\n\n<p>&lt;!DOCTYPE html&gt; &nbsp; &#8212;&#8212;&#8212;- it will display the version of the html<\/p>\n\n\n\n<p>&lt;html&gt;&nbsp; &nbsp; &#8212;&#8212;&#8212;-html root element<\/p>\n\n\n\n<p>&lt;head&gt;&nbsp; &nbsp; &#8212;&#8212;&#8211; used to include the metadata<\/p>\n\n\n\n<p>&lt;title&gt;&nbsp; &nbsp; &#8212;&#8212;&#8212;it is the page title&lt;\/title&gt;<\/p>\n\n\n\n<p>&lt;\/head&gt;&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p>&lt;body&gt; &nbsp; &#8212;&#8212;&#8212;-this is nothing but the content of the html<\/p>\n\n\n\n<p>&lt;h2&gt;&nbsp; &nbsp; &#8212;&#8212;&#8212;&#8211;heading content<\/p>\n\n\n\n<p>&lt;p&gt;&nbsp; &nbsp; &#8212;&#8212;&#8212;paragraph content in the html<\/p>\n\n\n\n<p>&lt;\/body&gt;&nbsp; &nbsp; &#8212;&#8212;&#8211;this is the end of the body<\/p>\n\n\n\n<p>&lt;\/html&gt;&nbsp; &nbsp; &#8212;&#8212;&#8211;this is the end of the html program<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;!DOCTYPE html>\u00a0\u2013 This is the document type of the declaration, this will declare the document as being an HTML document. The doctype declaration is not case-sensitive.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;html>\u00a0\u2013 its called as the HTML root element, and All other elements are contained within it.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;head>\u00a0\u2013 The head tag which includes the \u201cbehind the scenes\u201d elements for the webpage. Elements within the head will be not visible on the front end of a webpage. here the elements used inside the &lt;head> element include:\u00a0<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;style>\u00a0\u2013 This HTML tag allows us to insert styling into our web pages and make them appealing to look at with the help of CSS.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;title>\u00a0\u2013 The title is what is displayed on the top of your browser when you visit a website and contains the title of the webpage that you are viewing.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;base>\u00a0\u2013 It specifies the base URL for all relative URL\u2019s in a document.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;noscript>\u00a0\u2013 Defines a section of HTML that is inserted when the scripting has been turned off in the user\u2019s browser.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;script>\u00a0\u2013 This tag is used to add functionality to the website with the help of JavaScript.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;link>\u00a0\u2013 The \u2018link\u2019 tag is used to tie together HTML, CSS, and JavaScript. It is self-closing.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&lt;body>\u00a0\u2013 The body tag is used to enclose all the visible content of a webpage. In other words, the body content is what the browser will show on the front end.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Questions:<\/strong><\/h2>\n\n\n\n<p>1. Create an HTML basic web page.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>HTML&nbsp;stands for&nbsp;Hypertext Mark-up Language. It is the language which is used to create and design web pages on the internet.&nbsp; Some of the key reasons of learning HTML are listed here: What are the Features of HTML? HTML Elements and HTML Tags: HTML will make use of the predefined&nbsp;tags&nbsp;and also the&nbsp;elements&nbsp;that will instruct the browser [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":16656,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-16649","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-qa-tutorials"],"_links":{"self":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/16649","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/comments?post=16649"}],"version-history":[{"count":0,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/16649\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media\/16656"}],"wp:attachment":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media?parent=16649"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/categories?post=16649"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/tags?post=16649"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}