<?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"><channel><title><![CDATA[#Full Stack Web Development]]></title><description><![CDATA[#Full Stack Web Development]]></description><link>https://vishwajeetkumarsingh04.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Mon, 22 Jun 2026 07:36:57 GMT</lastBuildDate><atom:link href="https://vishwajeetkumarsingh04.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Know About Semantic Element]]></title><description><![CDATA[What is Sematic Element?
An Element which clearly describe it's content by it's tag name is known as Semantic Element.
For example :- <Header> , <article> , <footer> , etc
It will be more clear when code will be provided.
Why do we need to use Semant...]]></description><link>https://vishwajeetkumarsingh04.hashnode.dev/know-about-semantic-element</link><guid isPermaLink="true">https://vishwajeetkumarsingh04.hashnode.dev/know-about-semantic-element</guid><category><![CDATA[HTML5]]></category><category><![CDATA[SEO]]></category><dc:creator><![CDATA[Vishwajeet Kumar Singh]]></dc:creator><pubDate>Mon, 04 Dec 2023 10:41:46 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1701686336018/66acd589-b271-434f-9d89-6634043b7786.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h3 id="heading-what-is-sematic-element">What is Sematic Element?</h3>
<p>An Element which clearly describe it's content by it's tag name is known as Semantic Element.</p>
<p>For example :- &lt;Header&gt; , &lt;article&gt; , &lt;footer&gt; , etc</p>
<p>It will be more clear when code will be provided.</p>
<h3 id="heading-why-do-we-need-to-use-semantic-element-or-tag">Why do we need to use Semantic Element or Tag?</h3>
<ol>
<li><p>Improved readability and maintainability.</p>
</li>
<li><p>Enhanced accessibility.</p>
</li>
<li><p>Better <strong>Search Engine Optimization.</strong></p>
</li>
</ol>
<h3 id="heading-some-semantic-tags-are">Some Semantic Tags are :</h3>
<ul>
<li><p>&lt;article&gt;</p>
</li>
<li><p>&lt;aside&gt;</p>
</li>
<li><p>&lt;details&gt;</p>
</li>
<li><p>&lt;figcaption&gt;</p>
</li>
<li><p>&lt;figure&gt;</p>
</li>
<li><p>&lt;footer&gt;</p>
</li>
<li><p>&lt;header&gt;</p>
</li>
<li><p>&lt;main&gt;</p>
</li>
<li><p>&lt;mark&gt;</p>
</li>
<li><p>&lt;nav&gt;</p>
</li>
<li><p>&lt;section&gt;</p>
</li>
<li><p>&lt;summary&gt;</p>
</li>
<li><p>&lt;time&gt;</p>
</li>
</ul>
<p>Now I am providing Code using above Semantic Elements.</p>
<p>Hope so this will be helpful for you.</p>
<pre><code class="lang-xml"><span class="hljs-meta">&lt;!DOCTYPE <span class="hljs-meta-keyword">html</span>&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">html</span> <span class="hljs-attr">lang</span>=<span class="hljs-string">"en"</span>&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">head</span>&gt;</span>
    <span class="hljs-tag">&lt;<span class="hljs-name">meta</span> <span class="hljs-attr">charset</span>=<span class="hljs-string">"UTF-8"</span>&gt;</span>
    <span class="hljs-tag">&lt;<span class="hljs-name">meta</span> <span class="hljs-attr">name</span>=<span class="hljs-string">"viewport"</span> <span class="hljs-attr">content</span>=<span class="hljs-string">"width=device-width, initial-scale=1.0"</span>&gt;</span>
    <span class="hljs-tag">&lt;<span class="hljs-name">title</span>&gt;</span>Let's Start<span class="hljs-tag">&lt;/<span class="hljs-name">title</span>&gt;</span>
<span class="hljs-tag">&lt;/<span class="hljs-name">head</span>&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">body</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">header</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">h1</span>&gt;</span>This is a Header<span class="hljs-tag">&lt;/<span class="hljs-name">h1</span>&gt;</span>
    <span class="hljs-tag">&lt;/<span class="hljs-name">header</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">nav</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">ul</span>&gt;</span>
            <span class="hljs-tag">&lt;<span class="hljs-name">li</span>&gt;</span><span class="hljs-tag">&lt;<span class="hljs-name">a</span> <span class="hljs-attr">href</span>=<span class="hljs-string">"#"</span>&gt;</span>Nav Link 1<span class="hljs-tag">&lt;/<span class="hljs-name">a</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">li</span>&gt;</span>
            <span class="hljs-tag">&lt;<span class="hljs-name">li</span>&gt;</span><span class="hljs-tag">&lt;<span class="hljs-name">a</span> <span class="hljs-attr">href</span>=<span class="hljs-string">"#"</span>&gt;</span>Nav Link 2<span class="hljs-tag">&lt;/<span class="hljs-name">a</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">li</span>&gt;</span>
            <span class="hljs-tag">&lt;<span class="hljs-name">li</span>&gt;</span><span class="hljs-tag">&lt;<span class="hljs-name">a</span> <span class="hljs-attr">href</span>=<span class="hljs-string">"#"</span>&gt;</span>Nav Link 3<span class="hljs-tag">&lt;/<span class="hljs-name">a</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">li</span>&gt;</span>
        <span class="hljs-tag">&lt;/<span class="hljs-name">ul</span>&gt;</span>
    <span class="hljs-tag">&lt;/<span class="hljs-name">nav</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">main</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">article</span>&gt;</span>
            <span class="hljs-tag">&lt;<span class="hljs-name">h2</span>&gt;</span>Article Title<span class="hljs-tag">&lt;/<span class="hljs-name">h2</span>&gt;</span>
            <span class="hljs-tag">&lt;<span class="hljs-name">p</span>&gt;</span>This is the content of the article.<span class="hljs-tag">&lt;/<span class="hljs-name">p</span>&gt;</span>
        <span class="hljs-tag">&lt;/<span class="hljs-name">article</span>&gt;</span>

        <span class="hljs-tag">&lt;<span class="hljs-name">section</span>&gt;</span>
            <span class="hljs-tag">&lt;<span class="hljs-name">h2</span>&gt;</span>Section Title<span class="hljs-tag">&lt;/<span class="hljs-name">h2</span>&gt;</span>
            <span class="hljs-tag">&lt;<span class="hljs-name">p</span>&gt;</span>This is the content of the section.<span class="hljs-tag">&lt;/<span class="hljs-name">p</span>&gt;</span>
        <span class="hljs-tag">&lt;/<span class="hljs-name">section</span>&gt;</span>
    <span class="hljs-tag">&lt;/<span class="hljs-name">main</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">aside</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">h2</span>&gt;</span>Aside Content<span class="hljs-tag">&lt;/<span class="hljs-name">h2</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">p</span>&gt;</span>This is additional content placed in the aside.<span class="hljs-tag">&lt;/<span class="hljs-name">p</span>&gt;</span>
    <span class="hljs-tag">&lt;/<span class="hljs-name">aside</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">footer</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">p</span>&gt;</span>This is the footer of the page.<span class="hljs-tag">&lt;/<span class="hljs-name">p</span>&gt;</span>
    <span class="hljs-tag">&lt;/<span class="hljs-name">footer</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">details</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">summary</span>&gt;</span>Details<span class="hljs-tag">&lt;/<span class="hljs-name">summary</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">p</span>&gt;</span>This is more information that can be toggled.<span class="hljs-tag">&lt;/<span class="hljs-name">p</span>&gt;</span>
    <span class="hljs-tag">&lt;/<span class="hljs-name">details</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">figure</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">img</span> <span class="hljs-attr">src</span>=<span class="hljs-string">"pic1.jpg"</span> <span class="hljs-attr">width</span>=<span class="hljs-string">"200px"</span> <span class="hljs-attr">height</span>=<span class="hljs-string">"200px"</span> <span class="hljs-attr">alt</span>=<span class="hljs-string">"Example Image"</span>&gt;</span>
        <span class="hljs-tag">&lt;<span class="hljs-name">figcaption</span>&gt;</span>Caption for the image<span class="hljs-tag">&lt;/<span class="hljs-name">figcaption</span>&gt;</span>
    <span class="hljs-tag">&lt;/<span class="hljs-name">figure</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">mark</span>&gt;</span>This is highlighted text using the mark element.<span class="hljs-tag">&lt;/<span class="hljs-name">mark</span>&gt;</span>

    <span class="hljs-tag">&lt;<span class="hljs-name">time</span> <span class="hljs-attr">datetime</span>=<span class="hljs-string">"2023-12-04"</span>&gt;</span>December 4, 2023<span class="hljs-tag">&lt;/<span class="hljs-name">time</span>&gt;</span>

<span class="hljs-tag">&lt;/<span class="hljs-name">body</span>&gt;</span>
<span class="hljs-tag">&lt;/<span class="hljs-name">html</span>&gt;</span>
</code></pre>
]]></content:encoded></item><item><title><![CDATA[Know about Comment, Tags & Element in HTML.]]></title><description><![CDATA[In this article I will discuss about Comment, Tags & Element in html.
Comment
Here the word "Comment" itself saying everything i.e when we want to explain our code for furture understanding but don't want to display on our web page, then we use comme...]]></description><link>https://vishwajeetkumarsingh04.hashnode.dev/know-about-comment-tags-element-in-html</link><guid isPermaLink="true">https://vishwajeetkumarsingh04.hashnode.dev/know-about-comment-tags-element-in-html</guid><category><![CDATA[HTML5]]></category><dc:creator><![CDATA[Vishwajeet Kumar Singh]]></dc:creator><pubDate>Sun, 03 Dec 2023 17:02:05 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1701615801857/8c88a068-4fcf-4e14-a866-ac2390aaaaac.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>In this article I will discuss about Comment, Tags &amp; Element in html.</p>
<h3 id="heading-comment">Comment</h3>
<p>Here the word "Comment" itself saying everything i.e when we want to explain our code for furture understanding but don't want to display on our web page, then we use comment. For this we have to press " <strong>ctrl+/</strong> " (where we want to comment).</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701616654678/905b428b-acc4-46b8-a870-ad99f872b05e.png" alt class="image--center mx-auto" /></p>
<p>In above pic "This is Paragraph" is comment. And in below pic we can see that the comment is not showing on our web page.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701621092370/4afd0262-f13c-4f15-8ae8-8a9e5fef6338.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-tags">Tags</h3>
<p>Tags are keyword which is already known to our web browser and according to these tags our web browser format it and display our content.</p>
<p>With the help of tags, a web browser can differentiate between an HTML content and a Simple content.</p>
<p><strong>Type Of Tags</strong></p>
<p>There are two type of tags:</p>
<ol>
<li><p>Paired Tag</p>
</li>
<li><p>Unpaired Tag</p>
</li>
</ol>
<p>Paired Tag :- Tags in which our content is represented between opening tag (&lt;&gt;) and closing tag (&lt;/&gt;).</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701622276560/fcda445d-e8af-4806-a0f6-cd425849a8c5.jpeg" alt class="image--center mx-auto" /></p>
<p>eg:- &lt;p&gt; This is awesome platform &lt;/p&gt;</p>
<p>Unpaired Tag :- Tags in which there isn't closing tag.</p>
<p>eg:- &lt;br&gt; , &lt;hr&gt; ,etc</p>
<h3 id="heading-element">Element</h3>
<p>The collection of Opening and closing tag with content between both tags is known as element.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701622599392/a576c2da-ad58-4f15-8f2b-3ad6016aae58.jpeg" alt class="image--center mx-auto" /></p>
<p>Thanks for your time.</p>
]]></content:encoded></item><item><title><![CDATA[Setting up the first file in HTML with VS code editor.]]></title><description><![CDATA[In this blog I will discuss how to set up file in HTML with the help of VS code editor and render it on our browser. Here I am considering that we all know basics about VS code and HTML.
I will discuss step by step :-
Step- 1
Create empty folder, it ...]]></description><link>https://vishwajeetkumarsingh04.hashnode.dev/setting-up-the-first-file-in-html-with-vs-code-editor</link><guid isPermaLink="true">https://vishwajeetkumarsingh04.hashnode.dev/setting-up-the-first-file-in-html-with-vs-code-editor</guid><category><![CDATA[HTML5]]></category><category><![CDATA[vscode]]></category><dc:creator><![CDATA[Vishwajeet Kumar Singh]]></dc:creator><pubDate>Sat, 02 Dec 2023 16:38:13 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/stock/unsplash/wUbNvDTsOIc/upload/f2303e1507f739c459c405791199be8e.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>In this blog I will discuss how to set up file in HTML with the help of VS code editor and render it on our browser. Here I am considering that we all know basics about VS code and HTML.</p>
<p>I will discuss step by step :-</p>
<h3 id="heading-step-1">Step- 1</h3>
<p>Create empty folder, it can be anywhere in our system. Here I am creating it on my Destop.</p>
<h3 id="heading-step-2">Step- 2</h3>
<p>Now we have to open VS code and have select "open folder" and open the folder that we have created in step- 1.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701532511423/e3744546-b83c-41a4-837c-3f8b4cda3999.png" alt class="image--center mx-auto" /></p>
<p>Here my folder name is "First Project".</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701532640695/0549b630-68b4-40f1-a299-0cd6c05e61ad.png" alt class="image--center mx-auto" /></p>
<p>After selecting folder, click on "Select Folder".</p>
<h3 id="heading-step-3">Step- 3</h3>
<p>Now our folder is on VS code Editor, we can see it on left side of image provided below with folder name "First Project".</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701533177717/6407120d-0718-4892-a433-7c30b732d765.png" alt class="image--center mx-auto" /></p>
<p>Now we have to move our mouse on folder name, and we will find image like provided below.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701533471927/fe95a4c8-ba92-4336-8510-64b43a9c5265.png" alt class="image--center mx-auto" /></p>
<p>Now Click on File icon and provide name of file with extension (.html).</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701533700182/5ef58009-a19f-4b62-ae7e-7ca2327cb557.png" alt class="image--center mx-auto" /></p>
<p>Here I Provided file name "firstProject.html" with extension html.</p>
<h3 id="heading-step-4">Step- 4</h3>
<p>Till now we learn how to create html file in VS code. Now we will render that html file on our browser.</p>
<p>By selecting our created file on VS code, we have select "shift + ! " to get boilerplate. Image provided below.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701534217334/5892d586-ec49-42ca-8803-3eb6df460111.png" alt class="image--center mx-auto" /></p>
<p>Select " ! " .</p>
<h3 id="heading-step-5">Step- 5</h3>
<p>It Look like</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701534484963/35c3c363-c6e8-4870-b825-f01470d992a0.png" alt class="image--center mx-auto" /></p>
<p>Now we can change title and provide content in body.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701534641925/879f2355-d7cd-4ada-87bc-ff6726fae099.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-step-6">Step- 6</h3>
<p>Now click on "Go Live" i.e on Bottom-right side.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1701534809836/dafb1940-2bca-47ed-85df-10b7d3386109.png" alt class="image--center mx-auto" /></p>
<p>Now we created html file and render it on our browser.</p>
]]></content:encoded></item></channel></rss>