<?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 Anusha Sunilkumar on Medium]]></title>
        <description><![CDATA[Stories by Anusha Sunilkumar on Medium]]></description>
        <link>https://medium.com/@anushasunil71201?source=rss-ade48fb676e9------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*g_t4ttWk_esr4DEJyCEEeA.jpeg</url>
            <title>Stories by Anusha Sunilkumar on Medium</title>
            <link>https://medium.com/@anushasunil71201?source=rss-ade48fb676e9------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Fri, 15 May 2026 15:45:32 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@anushasunil71201/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 Meta Tags]]></title>
            <link>https://medium.com/@anushasunil71201/html-meta-tags-8cbcfa962b94?source=rss-ade48fb676e9------2</link>
            <guid isPermaLink="false">https://medium.com/p/8cbcfa962b94</guid>
            <category><![CDATA[frontend-development]]></category>
            <category><![CDATA[html5]]></category>
            <category><![CDATA[meta-tags]]></category>
            <category><![CDATA[web-development]]></category>
            <dc:creator><![CDATA[Anusha Sunilkumar]]></dc:creator>
            <pubDate>Wed, 10 Nov 2021 18:25:15 GMT</pubDate>
            <atom:updated>2021-11-10T18:25:15.652Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/498/1*k-mPuZDLbegtKJHJdpK-xQ.png" /><figcaption>Photo by <a href="https://www.pngitem.com/userpic/16948/">Joes Paris</a> on <a href="https://www.pngitem.com/">pngitem.com</a></figcaption></figure><p>Meta tags provide information about the properties of the webpage given to the browser. It will impact how the page will be displayed in the browser.</p><p>They don’t appear on the webpage, but they are present in the head tag of the HTML document, as they are machine parsable, web browsers can comprehend. They are the metadata of the webpage.</p><p>Meta tags are crucial as they will tell the browser; what the webpage is all about and; how it can display in the search results in the browser. It will increase the web page’s visibility. Thus, they are crucial for Search Engine Optimization.</p><p>1. <strong>charset attribute — </strong>It tells the browse in which character set, the website is written.<br>The above code tells the browser to use UTF-8 character encoding. UTF-8 is the most common character encoding used. It encodes human-readable text into a machine language or vice versa.</p><pre>&lt;meta<strong> charset=&quot;UTF-8&quot;</strong>&gt;</pre><p><strong>2. </strong><strong>content attribute</strong></p><p>It gives the value of the information associated with the http-equiv or name attribute.</p><pre>&lt;meta<strong> content=&quot;text&quot;</strong>&gt;</pre><p><strong>3. </strong><strong>http-equiv attribute</strong></p><p>It acts as an HTTP response header (carries information for Request and Response body) to define settings without using an actual HTTP response header.<br>The HTTP-equiv and content pair provide the HTTP header with its corresponding value.</p><pre>&lt; meta<strong> http-equiv=&quot;refresh&quot; </strong>content=&quot;30&quot;&gt;</pre><ul><li><strong>content-security-policy</strong></li></ul><p>It adds security to the webpage as it protects from data theft, injection, or other malpractice.</p><pre>&lt;meta<strong> http-equiv=&quot;content-security-policy&quot; </strong>content=&quot;default-src&#39;self&#39;&quot;&gt;</pre><ul><li><strong>content-type</strong></li></ul><p>Specifies the type of the data in the body of an entity by sending type/subtype as information.</p><pre>&lt;meta<strong> http-equiv=&quot;content-type&quot; </strong>content=&quot;text/html&quot;&gt;</pre><ul><li><strong>default-style</strong></li></ul><p>It tells to use the specified stylesheet as the default stylesheet if no stylesheet is linked.</p><pre>&lt;meta<strong> http-equiv=&quot;default-style&quot; </strong>content=&quot;default_stylesheet.css&quot;&gt;</pre><ul><li><strong>refresh</strong></li></ul><p>Defines a time after which the document has to refresh itself. In the code below, it will refresh the page after every 30 seconds.</p><pre>&lt;<strong>meta http-equiv=&quot;refresh&quot; content=&quot;30&quot;</strong>&gt;</pre><p><strong>4. </strong><strong>name attribute</strong></p><p>It specifies the name of the metadata.</p><pre>&lt;<strong>meta name=&quot;author&quot; </strong>content=&quot;John Doe&quot; &gt;</pre><ul><li><strong>applicationName</strong></li></ul><p>It specifies the name of the web application.</p><pre>&lt;meta<strong> name=&quot;applicationName&quot; </strong>content=&quot;homepage&quot;&gt;</pre><ul><li><strong>author</strong></li></ul><p>It specifies the name of the author of the web application.</p><pre>&lt;meta<strong> name=&quot;author&quot; </strong>content=&quot;John Doe&quot;&gt;</pre><ul><li><strong>generator</strong></li></ul><p>In this tag, we mention the name of the program or software we used to create our website.</p><pre>&lt;meta<strong> name=&quot;generator&quot; </strong>content=&quot;FrontPage 4.0&quot;&gt;</pre><ul><li><strong>keywords</strong></li></ul><p>In this tag, we give a list of keywords that will give more information to the search engines. When a user searches for a keyword, that is present in this tag, then the search engine will show this website as one of the search results.</p><p>eg. keywords for a hospital website</p><pre>&lt;meta <strong>name=&quot;keywords&quot;</strong> content=&quot;best cancer hospital in India, hospitals inInfia, the best neurologits in India, a best orthopedic hospital in India, super speciality hospital near me&quot;&gt;</pre><ul><li><strong>viewport</strong></li></ul><p>It is the area where our webpage will b displayed. In this tag in the content attribute, the values passed are the width=”device-width” and the initial scale=1.0.<br>Width tells the browser to display the page befitting the device’s screen width. The initial scale is the initial zoom when visiting a page.</p><pre>&lt;meta<strong> name=&quot;viewport&quot; </strong>content=&quot;width=device-width, initial-scale=1.0&quot;&gt;</pre><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=8cbcfa962b94" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[CSS Selectors]]></title>
            <link>https://medium.com/@anushasunil71201/css-selectors-40098f4b0e2a?source=rss-ade48fb676e9------2</link>
            <guid isPermaLink="false">https://medium.com/p/40098f4b0e2a</guid>
            <category><![CDATA[frontend-development]]></category>
            <category><![CDATA[css]]></category>
            <category><![CDATA[css-selectors]]></category>
            <dc:creator><![CDATA[Anusha Sunilkumar]]></dc:creator>
            <pubDate>Wed, 10 Nov 2021 14:54:52 GMT</pubDate>
            <atom:updated>2021-11-10T14:54:52.179Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/504/1*I7NONbOq_KufnRSwmSgONw.png" /></figure><p>Many of us are familiar with HTML (Hypertext Markup Language) and CSS (Cascading Style Sheets) as they are the core technologies used for Front End Web Development, one of it is used to construct and layout the webpage, and another one is responsible for the styling, and appearance of the webpage.</p><p>The browser first layouts the structure of the page and then combines the CSS styles to the document. But, ever wondered how does the browser come to know which styling is to be applied to which element in external CSS? Here, CSS Selector plays the role.</p><p>CSS Selectors select the HTML element. and apply the set of CSS rules to the selected element.</p><p>The CSS Selectors are classified into five types.</p><ol><li><strong>Simple Selectors — </strong>Simple Selectors are the most basic type of selectors as it selects the HTML elements based on the type of element, id, and class.</li></ol><ul><li>Type Selector — Type Selector will select all the elements in the document of the type mentioned.</li></ul><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/368/1*_Fo9b41pZ-znw7yOzE41aQ.png" /></figure><ul><li>Class Selector — A Class attribute applies the same set of CSS rules on more than one element.<br>Class Selector will select all the elements which have a class attribute as the mentioned class name.</li></ul><p><strong>eg.</strong> class=&quot;class-name&quot; It will select all the elements having class name as class-name.</p><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/362/1*jYz25Qp_-jECQkLgXrE14A.png" /></figure><ul><li>Id Selector — An Id attribute is assigned when the element is unique.<br>Id Selector will select the element which has an Id attribute as the mentioned Id name.</li></ul><p><strong>eg. </strong>id=&quot;id-name&quot; It will select the element having id as id-name.</p><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/374/1*HgTZnvukcHRYiaKMZIscxw.png" /></figure><ul><li>Universal Selector — Universal Selector selects all the elements of a document or selects all the elements of type, class, or id mentioned.</li></ul><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/347/1*lHLHUWohOhZqvzMkQl1KSg.png" /></figure><p><strong>2. Combinators —</strong> Combinators combines the selectors using their relationship with each other.</p><ul><li>Descendant Selector — The Descendant Selector selects all the descendants of the specified element.</li></ul><p><strong>eg. </strong>select all &lt;p&gt; elements that are present within a &lt;div&gt; element irrespective of its level within the &lt;div&gt; block.</p><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/377/1*9SLBzAkopCfOU7bvK7quZQ.png" /></figure><ul><li>Child Selector — The Child Selector selects all child elements of a specified type of a specified parent element.</li></ul><p><strong>eg. </strong>select all &lt;p&gt; elements that are directly connected to the &lt;div&gt; element within &lt;div&gt; block.</p><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/380/1*V8k-Sh-DoQSL9tnr59x5Tw.png" /></figure><ul><li>Adjacent Sibling Selector — Adjacent Sibling Selector is used to selecting a specified element that appears right after the other specified element block.</li></ul><p><strong>eg. </strong>select an &lt;p&gt; element that appears right after a &lt;div&gt; block.</p><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/394/1*FjQkBZ9WBC-vJWy3gmaIgA.png" /></figure><ul><li>General Sibling Selector — General Sibling Selector is used to select all the specified elements appearing after the other specified element block.</li></ul><p><strong>eg. </strong>select all &lt;p&gt; elements appearing after the &lt;div&gt; block.</p><p>Syntax:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/388/1*l2WdynY5mRHuQhB59xBm_Q.png" /></figure><p><strong>3. Pseudo Class — </strong>The Pseudo Class defines a special state of the element. When the particular state is achieved, CSS is applied.<br>A few of the most commonly used Pseudo Classes are:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/678/1*F7jlNPnTbqlZzxYBoX1uCw.png" /></figure><p><strong>4. Pseudo Element — </strong>The Pseudo Element selects a specific part of the content for styling.<br>The commonly used Pseudo-elements are:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/670/1*ydHgxAnjz-rJgT5NWQEx0Q.png" /></figure><p><strong>5. Attribute Selector — </strong>The Attribute Selector selects an HTML element having a specified attribute or an attribute value.<br>The commonly used Attribute Selectors are:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/674/1*tANnwrlgVbvsWcPi9cCjDw.png" /></figure><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=40098f4b0e2a" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>