<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Coding Tutorial on Medium]]></title>
        <description><![CDATA[Stories by Coding Tutorial on Medium]]></description>
        <link>https://medium.com/@codingtutorial?source=rss-e2166000ec09------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*iP4hfeCI2WIvTnYJLejNjw.png</url>
            <title>Stories by Coding Tutorial on Medium</title>
            <link>https://medium.com/@codingtutorial?source=rss-e2166000ec09------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Thu, 28 May 2026 08:26:44 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@codingtutorial/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[HTML Tutorial #2 | HTML Working]]></title>
            <link>https://medium.com/@codingtutorial/html-tutorial-1-html-working-79a5b7ad0c57?source=rss-e2166000ec09------2</link>
            <guid isPermaLink="false">https://medium.com/p/79a5b7ad0c57</guid>
            <category><![CDATA[programming-languages]]></category>
            <category><![CDATA[programming]]></category>
            <category><![CDATA[html-tutorial]]></category>
            <category><![CDATA[html-working]]></category>
            <category><![CDATA[html]]></category>
            <dc:creator><![CDATA[Coding Tutorial]]></dc:creator>
            <pubDate>Sat, 29 Oct 2022 00:48:14 GMT</pubDate>
            <atom:updated>2022-10-29T00:48:35.072Z</atom:updated>
            <content:encoded><![CDATA[<p>When we want to access any information on the internet we search that on a web browser. The web browser gets all the content from the web servers. This content is stored in the webservers in the form of an HTML document.<br>An HTML document is first written with some tags in any code editor or your choice of a text editor and then saved with the “ .html ” extension. After this, the browser interprets the HTML document, reads it, and renders a web page.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/608/1*aq-8k8phKTwdh3iWAa4M6w.jpeg" /></figure><p>In the above figure, we open a simple text editor, then the basic structure is to be written. Now, this file is to be saved with the &quot;index.html&quot; filename. After saving this file, open this file in your web browser. After opening our webpage will look like as the output.<br> <br>Below we’ll discuss this line briefly.</p><h3>How does HTML Works?</h3><h4>HTML Document:</h4><p>It&#39;s a text document saved with the extension .html or .htm that contains texts and some tags written between &quot;&lt; &gt;&quot; which give the instructions needed to configure the web page.<br>These tags are fixed and definite. About the structure of html document is explained further.</p><h3>Browser:</h3><ul><li>A browser is an application that reads HTML documents and renders the webpage.</li><li>They cannot read the content directly where it is stored. To settle this conflict servers are used.</li><li>A server acts like an intermediate, it patiently listens to the browser&#39;s request and executes it.</li><li>Now the document is delivered to the browser.</li><li>Browsers support two parts now: parsing and rendering.</li><li>When the browser is in the parsing stage, it receives raw bytes which are converted into characters and these characters are then converted into tokens after that tokens are converted into nodes. Then these nodes are linked in a tree data structure known as DOM(Document Object Model).</li><li>when the DOM tree structure has been constructed, the browser starts its rendering. Now each node in the DOM tree will be rendered and displayed.</li></ul><h3>Rendered Page:</h3><p>The rendered page is the output screen of our HTML Document which is the page displayed on the browser</p><h3>How does the basic website work?</h3><ul><li>Web Browser(client) requests www.kkeducenter.in like websites from the webserver.</li><li>Webserver in return sends HTML, CSS, and JS files to it.</li><li>HTML, JS, and CSS files are parsed by a web browser and show you a beautiful website</li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=79a5b7ad0c57" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[HTML Tutorial #1 | What is HTML? Features and History]]></title>
            <link>https://medium.com/@codingtutorial/html-tutorial-1-what-is-html-features-and-history-29b1f83b3df3?source=rss-e2166000ec09------2</link>
            <guid isPermaLink="false">https://medium.com/p/29b1f83b3df3</guid>
            <category><![CDATA[html]]></category>
            <category><![CDATA[html-tutorial]]></category>
            <category><![CDATA[html5]]></category>
            <category><![CDATA[what-is-html]]></category>
            <category><![CDATA[history-of-html]]></category>
            <dc:creator><![CDATA[Coding Tutorial]]></dc:creator>
            <pubDate>Fri, 28 Oct 2022 14:07:49 GMT</pubDate>
            <atom:updated>2022-10-28T14:07:49.685Z</atom:updated>
            <content:encoded><![CDATA[<h3>What is HTML?</h3><ul><li>HTML is an initialism for &quot;HyperText Markup Language&quot;.</li><li>It is the language of the web.</li><li>It is used to create websites.</li><li>It is used to define a page layout, meaning it is a barebone page structure.</li><li>HTML is used for making pages of the website also called webpages that we see on the internet</li><li>It consists of a set of tags.</li><li>This set of tags is written in HTML Document.</li><li>&quot;.html&quot; or &quot;.htm&quot; is the extension.</li><li>There are so many versions of HTML but HTML5 is the latest version.</li></ul><h3>Features of HTML</h3><ul><li>It is platform-independent.</li><li>Images, videos, and audio can be added to a web page.</li><li>Hypertext can be added to the text.</li><li>It is a markup language.</li><li>It is interpreted language</li><li>It can be integrated with other languages like CSS, JavaScript etc.</li><li>Semantic Structure.</li><li>local Storage &amp; Indexed DB – Client-side data storage.</li><li>Offline Capabilities (PWA) with Cache API &amp; Service Workers.</li></ul><h3>Why the work HyperText &amp; Markup Language</h3><p>The word hypertext markup language comprises the words “<strong><em>hypertext</em></strong>” and “<strong><em>markup language</em></strong>”. The term &quot;<strong><em>hypertext</em></strong>&quot; refers to the linking of text with other documents and “<strong><em>markup language</em></strong>” refers to a language that uses a set of tags.<br>So, HTML is the linking of text with other documents using some set of tags.<br> <br><strong>Note:-</strong> Tags refers to some meaningful texts enclosed in angle braces <strong><em>&lt;...&gt;</em></strong>. For eg. <strong><em>&lt;head&gt;</em></strong>. Each tag has a different meaning and importance in building an HTML page which can affect the web page in its own ways</p><h4>A beautiful analogy to understand HTML:</h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*fxDIuh05LhArE-DO_Zocbw.png" /></figure><p>Here in the explanation for the above analogy, the car skeleton refers to HTML with the page body. When that skeleton is painted it the car gets CSS and after all that car is provided with some functionalities like engine, etc (which refers to JavaScript), the car gets life and can run. Similarly, when we develop our websites we need HTML for the structure and if we want our website to look good and prettier we need CSS and if we want to add functionalities to our webpage we need JavaScript.</p><h3>History of HTML:</h3><ul><li>In 1989, Tim Berners Lee established www and created HTML in 1991.</li><li>From 1995 to 1997, he started working on versions of HTML.</li><li>In 1999, a committee was organized that made HTML4.0 a standard.</li><li>HTML4.0 is used by many, even today. However, the stable version of HTML is 5.0 also known as HTML5.</li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=29b1f83b3df3" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>