<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Partha Maity</title>
    <description>The latest articles on DEV Community by Partha Maity (@ytiamahtrap).</description>
    <link>https://dev.to/ytiamahtrap</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F620044%2F9363e4cf-aa1a-4cae-8288-70c8816f41ed.jpeg</url>
      <title>DEV Community: Partha Maity</title>
      <link>https://dev.to/ytiamahtrap</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ytiamahtrap"/>
    <language>en</language>
    <item>
      <title>What exactly is HTML and Why it is called so?</title>
      <dc:creator>Partha Maity</dc:creator>
      <pubDate>Sat, 24 Apr 2021 15:02:29 +0000</pubDate>
      <link>https://dev.to/ytiamahtrap/what-exactly-is-html-and-why-it-is-called-so-h0g</link>
      <guid>https://dev.to/ytiamahtrap/what-exactly-is-html-and-why-it-is-called-so-h0g</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;So basically, &lt;strong&gt;HTML&lt;/strong&gt; is a standard &lt;em&gt;markup language&lt;/em&gt; for documents designed to be displayed in a web browser(Webpage).&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Then, What is a markup language??
&lt;/h3&gt;

&lt;p&gt;Let's understand it through a simple example,&lt;/p&gt;

&lt;p&gt;Suppose I asked🙏 you to send &lt;em&gt;your favorite color&lt;/em&gt; and &lt;em&gt;your pet's name&lt;/em&gt;, and this is what you responded with -&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CaMlhWXw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jvksb9dalhzjaxru3vfd.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CaMlhWXw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jvksb9dalhzjaxru3vfd.jpg" alt="Your Response"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Looking at the same, I got confused😕 about which of them is what??&lt;br&gt;
So this time, I asked you for the same but with more precision...&lt;br&gt;
and this is what I have got -&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--R86cOEME--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8j0c1f3kv66t13oc8jfz.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--R86cOEME--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8j0c1f3kv66t13oc8jfz.jpg" alt="Your Final Response"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Finally! A clear response😌...&lt;/p&gt;




&lt;p&gt;So what you did the second time is what the job of markup language is...&lt;br&gt;
We mark the text in a document to tell the &lt;em&gt;Web browser&lt;/em&gt; what exactly is that text about&lt;br&gt;
and in &lt;em&gt;HTML&lt;/em&gt;, to mark those texts we use something called &lt;strong&gt;HTML Tags&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For example -&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EGBpUim4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tlanq9pxpdall5ng3rg1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EGBpUim4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tlanq9pxpdall5ng3rg1.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The above code tells the Web browser that &lt;strong&gt;Mumbai, India&lt;/strong&gt; is an &lt;em&gt;address&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;and this is why,&lt;br&gt;
&lt;strong&gt;HTML&lt;/strong&gt; stands for &lt;em&gt;&lt;strong&gt;H&lt;/strong&gt;yper &lt;strong&gt;T&lt;/strong&gt;ext &lt;strong&gt;M&lt;/strong&gt;arkup &lt;strong&gt;L&lt;/strong&gt;anguage&lt;/em&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  HyperText??
&lt;/h3&gt;

&lt;p&gt;When HTML was first developed, they came up with the concept of &lt;strong&gt;hyperlinks&lt;/strong&gt; through which a user can jump from one webpage to another and it was so revolutionary that they named the language after it.&lt;br&gt;
and &lt;strong&gt;HyperText&lt;/strong&gt; is just another name for &lt;em&gt;hyperlinks&lt;/em&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>webdev</category>
      <category>codenewbie</category>
    </item>
  </channel>
</rss>
