{"id":9989,"date":"2021-07-28T16:56:17","date_gmt":"2021-07-28T11:26:17","guid":{"rendered":"https:\/\/www.h2kinfosys.com\/blog\/?p=9989"},"modified":"2025-07-18T05:54:10","modified_gmt":"2025-07-18T09:54:10","slug":"html-hypertext-markup-language","status":"publish","type":"post","link":"https:\/\/www.h2kinfosys.com\/blog\/html-hypertext-markup-language\/","title":{"rendered":"HTML &#8211; HyperText Markup Language"},"content":{"rendered":"\n<p>HTML is expanded as HyperText Markup Language and it is vast and widely used languages to design the web pages. Hypertext refers to the way in which all web pages are linked together and the link available on webpage are called hypertext. HTML is a markup language which means it is used to \u201cmark-up\u201d a text document with tags that says the web browser how to structure it on web page.&nbsp; HTML was developed with the intent of defining the structure of documents like headings, paragraphs, lists and also to improvise the sharing of information between pages.<\/p>\n\n\n\n<p>HTML is being widely used to format web pages with the help of different tags that are available in HTML Language. The basic HTML document structure is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n\n&lt;html>\n\n&lt;head>\n&lt;title>This is document title&lt;\/title>\n&lt;\/head>\n\n&lt;body>\n&lt;h1>This is a heading&lt;\/h1>\n&lt;p>Document content goes here\u2026.&lt;\/p>\n&lt;\/body>\n\n&lt;\/html><\/code><\/pre>\n\n\n\n<p><strong>The output is<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"502\" height=\"341\" src=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image.png\" alt=\"\" class=\"wp-image-9990\" title=\"\" srcset=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image.png 502w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-300x204.png 300w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-220x150.png 220w\" sizes=\"(max-width: 502px) 100vw, 502px\" \/><\/figure>\n\n\n\n<p>All HTML documents should start with a type declaration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;! DOC TYPE html>.\n\nThe html document itself begins with &lt;html> and ends with &lt;\/html>. The visible part of HTML document is between &lt;body> and &lt;\/body>.<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>HTML editors:<\/strong><\/h2>\n\n\n\n<p><strong><\/strong>We can learn HTML by creating it in notepad software. Webpages can also be created and modified by using professional HTML editors. For learning HTML, we recommend a simple text editor like Notepad (PC) or Text edit in Mac.<\/p>\n\n\n\n<p>The steps to create a HTML program are:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click on start button on the screen.<\/li>\n\n\n\n<li>Click on programs-Accessories \u2013Notepad.<\/li>\n\n\n\n<li>Type the program and save with an extension of .htm<\/li>\n<\/ol>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Open the saved file in any browser by double click on that particular file.\u00a0<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>HTML headings:<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>Html headings are defined with the &lt;h1> to &lt;h6> tags.\n\n&lt;h1> defines the most important heading &lt;h6> defines the least important heading\n\n&lt;h1>This is heading 1&lt;\/h1>\n&lt;h2>This is heading 2&lt;\/h2>\n&lt;h3>This is heading 3&lt;\/h3>\n\n&lt;h4>This is heading 4&lt;\/h4>\n&lt;h5>This is heading 5&lt;\/h5>\n&lt;h6>This is heading 6&lt;\/h6><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"510\" height=\"263\" src=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-1.png\" alt=\"\" class=\"wp-image-9991\" title=\"\" srcset=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-1.png 510w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-1-300x155.png 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>HTML paragraphs:<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>To create a paragraph in HTML we use &lt;p> tags. For example\n\n&lt;!DOCTYPE html>\n&lt;html>\n&lt;body>\n\n&lt;p>This is a paragraph.&lt;\/p>\n&lt;p>This is another paragraph.&lt;\/p>\n\n&lt;\/body>\n&lt;\/html>\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"539\" height=\"322\" src=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-2.png\" alt=\"\" class=\"wp-image-9992\" title=\"\" srcset=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-2.png 539w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-2-300x179.png 300w\" sizes=\"(max-width: 539px) 100vw, 539px\" \/><\/figure>\n\n\n\n<p>HTML links<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>HTML links are defined by &lt;a>tag. For example\n\n&lt;a\u00a0href=\"https:\/\/www.iitworkforce.com\">This is a link&lt;\/a><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"528\" height=\"383\" src=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-3.png\" alt=\"\" class=\"wp-image-9993\" title=\"\" srcset=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-3.png 528w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-3-300x218.png 300w\" sizes=\"(max-width: 528px) 100vw, 528px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>HTML Images:<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>HTML images are defined with the &lt;img> tag. The source file src and alternate height and width are provided are provided with attributes.\n\n&lt;img\u00a0src=\"C:\\Users\\Public\\Pictures\\Sample Pictures\\Desert.jpg\"\u00a0width=\"104\"\u00a0height=\"142\"><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"498\" height=\"346\" src=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-4.png\" alt=\"\" class=\"wp-image-9994\" title=\"\" srcset=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-4.png 498w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-4-300x208.png 300w\" sizes=\"(max-width: 498px) 100vw, 498px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>HOW to create first HTML webpage?<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"645\" height=\"451\" src=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-5.png\" alt=\"\" class=\"wp-image-9997\" title=\"\" srcset=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-5.png 645w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2021\/07\/image-5-300x210.png 300w\" sizes=\"(max-width: 645px) 100vw, 645px\" \/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-transitional.dtd\">\n&lt;html xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\">\n&lt;head>\n&lt;meta http-equiv=\"Content-Type\" content=\"text\/html; charset=iso-8859-1\" \/>\n&lt;title>Untitled Document&lt;\/title>\n&lt;style type=\"text\/css\">\n&lt;!--\u00a0\n#Layer1 {\u00a0\nposition:absolute;\u00a0\nwidth:1104px;\u00a0\nheight:169px;\u00a0\nz-index:1;\u00a0\nbackground-image: url(images\/forest03.jpg);\u00a0\nbackground-color: #84A810;\u00a0\nleft: 11px;\u00a0\ntop: 10px;\u00a0\n}\u00a0\n#Layer2 {\u00a0\nposition:absolute;\u00a0\nwidth:176px;\u00a0\nheight:89px;\u00a0\nz-index:2;\u00a0\ntop: 187px;\u00a0\nleft: 12px;\u00a0\nbackground-color: #C4DDE1;\u00a0\n}\u00a0\n#Layer3 {\u00a0\nposition:absolute;\u00a0\nwidth:924px;\u00a0\nheight:39px;\u00a0\nz-index:3;\u00a0\nleft: 191px;\u00a0\ntop: 183px;\u00a0\nbackground-color: #D1F172;\u00a0\n}\u00a0\n#Layer4 {\u00a0\nposition:absolute;\u00a0\nwidth:845px;\u00a0\nheight:164px;\u00a0\nz-index:4;\u00a0\nleft: 191px;\u00a0\ntop: 223px;\u00a0\nbackground-color: #CCD191;\u00a0\n}\u00a0\n.style1 {\u00a0\ncolor: #A65353;\u00a0\nfont-style: italic;\u00a0\n}\u00a0\n#Layer5 {\u00a0\nposition:absolute;\u00a0\nwidth:178px;\u00a0\nheight:471px;\u00a0\nz-index:5;\u00a0\ntop: 182px;\u00a0\nbackground-color: #84A810;\u00a0\n}\u00a0\n#Layer6 {\u00a0\nposition:absolute;\u00a0\nwidth:844px;\u00a0\nheight:260px;\u00a0\nz-index:6;\u00a0\nleft: 191px;\u00a0\ntop: 394px;\u00a0\nbackground-color: #CCD191;\u00a0\n}\u00a0\n.style2 {\u00a0\ncolor: #FFFFFF;\u00a0\nfont-weight: bold;\u00a0\n}\u00a0\n.style6 {color: #FF00FF}\u00a0\n.style7 {color: #512828}\u00a0\n#Layer7 {\u00a0\nposition:absolute;\u00a0\nwidth:1026px;\u00a0\nheight:45px;\u00a0\nz-index:1;\u00a0\nleft: 0px;\u00a0\ntop: 469px;\u00a0\nbackground-color: #C4DDE1;\u00a0\n}\u00a0\n.style8 {\u00a0\ncolor: #990033;\u00a0\nfont-weight: bold;\u00a0\n}\u00a0\n.style10 {\u00a0\ncolor: #EBFBFC;\u00a0\nfont-weight: bold;\u00a0\n}\u00a0\nbody {\u00a0\nbackground-image: url(images\/adminmnu_top.gif);\u00a0\n}\u00a0\n.style11 {\u00a0\ncolor: #330099;\u00a0\nfont-family: \"Monotype Corsiva\";\u00a0\n}\u00a0\n-->\n&lt;\/style>\n&lt;\/head>\n&lt;body>\n&lt;div id=\"Layer1\">&lt;\/div>\n&lt;div id=\"Layer3\">\n&lt;h2 align=\"center\" class=\"style1\">&lt;marquee>\n&lt;span class=\"style11\">SHIKRA RESORT\u00a0\n&lt;\/span>\n&lt;\/marquee>&lt;\/h2>\n&lt;\/div>\n&lt;div id=\"Layer4\">&lt;imgsrc=\"images\/184125,xcitefun-rabbits7.jpg\" width=\"201\" height=\"169\" \/>&lt;imgsrc=\"images\/shikra1.jpg\" width=\"201\" height=\"169\" \/>&lt;imgsrc=\"images\/meerpagar-tree-green-forest-bird.jpeg\" width=\"201\" height=\"169\" \/>&lt;imgsrc=\"images\/pic01.gif\" width=\"240\" height=\"169\" \/>&lt;\/div>\n&lt;div id=\"Layer5\">\n&lt;div id=\"Layer7\">\n&lt;div align=\"center\" class=\"style8\">Shikra&lt;\/div>\n&lt;\/div>\n&lt;table width=\"177\" border=\"1\">\n&lt;tr>\n&lt;td>&lt;div align=\"left\">&lt;span class=\"style10\">Home&lt;\/span>&lt;\/div>&lt;\/td>\n&lt;\/tr>\n&lt;tr>\n&lt;td>&lt;span class=\"style10\">Activities&lt;\/span>&lt;\/td>\n&lt;\/tr>\n&lt;tr>\n&lt;td>&lt;span class=\"style10\">Photo gallery&lt;\/span>&lt;\/td>\n&lt;\/tr>\n&lt;tr>\n&lt;td>&lt;span class=\"style10\">Tariff details &lt;\/span>&lt;\/td>\n&lt;\/tr>\n&lt;tr>\n&lt;td>&lt;span class=\"style10\">Booking&lt;\/span>&lt;\/td>\n&lt;\/tr>\n&lt;tr>\n&lt;td>&lt;span class=\"style10\">Contact us&lt;\/span>&lt;\/td>\n&lt;\/tr>\n&lt;tr>\n&lt;tr>\n&lt;td>&lt;span class=\"style10\">Login&lt;\/span>&lt;\/td>\n&lt;\/tr>\n&lt;\/table>\n&lt;\/div>\n&lt;div id=\"Layer6\">\n&lt;p>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br \/>\n\n\n&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=\"style2\">&amp;nbsp;&amp;nbsp;&lt;span class=\"style6\">&amp;nbsp; &lt;span class=\"style7\">The main objective of African forest is to provide information regarding various forests situated in India and animals residing in the forest.In addition to that it also provides time and visiting season as well as map of the forest to tourists who wants to visit.&lt;br \/>\n\n&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This project helps people who are interested in wild animals so that they can visit in perfect season.&lt;br \/>\n\n&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;This project is to make the forest information to be done online.As the animal and bird species are decreasing day by day, it is nessasary to provide awareness for future generation also.So using this project user can directly get the information regarding&amp;nbsp; forest .&lt;br \/>\n\n\n&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; One of the major revenue of the forest&amp;nbsp; is Sandalwood.Forestdeparment keep track of all the information related to sandalwood and its products.his project provides details about sandalwood products.The administrator is provided with the more information&amp;nbsp; about the project&amp;nbsp; and can make further more changes to the project.&lt;\/span>&lt;\/span>&lt;\/span>&lt;\/p>\n&lt;\/div>\n\n&lt;\/body>\n&lt;\/html><\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>HTML is expanded as HyperText Markup Language and it is vast and widely used languages to design the web pages. Hypertext refers to the way in which all web pages are linked together and the link available on webpage are called hypertext. HTML is a markup language which means it is used to \u201cmark-up\u201d a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":10000,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-9989","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\/9989","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=9989"}],"version-history":[{"count":0,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/9989\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media\/10000"}],"wp:attachment":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media?parent=9989"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/categories?post=9989"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/tags?post=9989"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}