<?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: Amaan Shaikh</title>
    <description>The latest articles on DEV Community by Amaan Shaikh (@amaan56).</description>
    <link>https://dev.to/amaan56</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%2F522794%2Fac9a0878-073a-45a7-993e-35c1769ec65c.jpeg</url>
      <title>DEV Community: Amaan Shaikh</title>
      <link>https://dev.to/amaan56</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/amaan56"/>
    <language>en</language>
    <item>
      <title>How to make your webpage responsive using Media Queries.
</title>
      <dc:creator>Amaan Shaikh</dc:creator>
      <pubDate>Wed, 23 Dec 2020 17:39:56 +0000</pubDate>
      <link>https://dev.to/amaan56/how-to-make-your-webpage-responsive-using-media-queries-33f4</link>
      <guid>https://dev.to/amaan56/how-to-make-your-webpage-responsive-using-media-queries-33f4</guid>
      <description>&lt;p&gt;One of the most important feature of any website is its ability to be responsive. So let us first understand &lt;strong&gt;what is a responsive website&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;A responsive website is one that provides the same content on all devices irrespective of their sizes. It does not break if we access on any other devices other than our PC like mobiles, tablets, etc.&lt;/p&gt;

&lt;h3&gt;
  
  
  Importance of responsiveness
&lt;/h3&gt;

&lt;p&gt;Nowadays due to technological advancements, we are getting devices in a wide variety of shapes and sizes. Just take our laptops for example gone are the days where we used to have a monitor of standard sizes now we get laptops in various ranges of sizes. It is very important for a website to be compatible with all these devices and many more that will come in the future.&lt;/p&gt;

&lt;p&gt;In this article, I will help you in making a website responsive using Media Queries.&lt;/p&gt;

&lt;h3&gt;
  
  
  What are Media Queries?
&lt;/h3&gt;

&lt;p&gt;Media query is a CSS technique introduced in CSS3.&lt;/p&gt;

&lt;p&gt;It uses the @media rule to include a block of CSS properties only if a certain condition is true.&lt;/p&gt;

&lt;p&gt;So if you want your website font-size to automatically get reduced when the width of the screen is less than equal to 600px you can write the below code in your CSS file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@media only screen and (max-width: 600px) {
  body {
   font-size; 10px;
  }
} 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Let's understand the above code.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;@media&lt;/code&gt; - This enables our code to be a media query.&lt;br&gt;
&lt;code&gt;only screen&lt;/code&gt; - This ensures our code should be applicable to only screen sizes.&lt;br&gt;
&lt;code&gt;max-width: 600px&lt;/code&gt; - This is the breakpoint or condition you can say which applies the styles only when the screen size is less than equal to 600px.&lt;/p&gt;

&lt;p&gt;Please note if you have a style in media query already declared, the style inside media query will just get override if the condition is met.&lt;/p&gt;

&lt;p&gt;Apart from max-width, we can also use min-width to make sure media query styles are only applied when the screen size is greater than equal to the breakpoint.&lt;/p&gt;

&lt;p&gt;There is one more way in which a web page size changes apart from the device size is orientation in mobile devices.&lt;/p&gt;

&lt;p&gt;For mobile devices, we have two types of orientation: Portrait and Landscape, and the size of the page changes whenever the orientation changes.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Do not worry! Here come media queries to the rescue&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;So if you want to change to webpage color based on the orientation you can use the below code.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@media only screen and (orientation: landscape) {
  body {
    background-color: lightblue;
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;orientation&lt;/code&gt;- values can be landscape and portrait&lt;/p&gt;

&lt;p&gt;Reference: &lt;a href="https://www.w3schools.com/css/css_rwd_mediaqueries.asp"&gt;https://www.w3schools.com/css/css_rwd_mediaqueries.asp&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have a nice day!&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>responsive</category>
    </item>
    <item>
      <title>Getting started with Markdown.</title>
      <dc:creator>Amaan Shaikh</dc:creator>
      <pubDate>Wed, 23 Dec 2020 11:52:19 +0000</pubDate>
      <link>https://dev.to/amaan56/getting-started-with-markdown-4fjf</link>
      <guid>https://dev.to/amaan56/getting-started-with-markdown-4fjf</guid>
      <description>&lt;p&gt;If you are an active GitHub user you must have come across this file README.md.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So what is README.md?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;README.md is a file that contains information about a GitHub project like description, how to use it, licenses, and many more.&lt;/p&gt;

&lt;p&gt;As you can see README file has an extension as .md the reason behind this is because the README file is a markdown file. &lt;strong&gt;So let's learn about what is a markdown file&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;Markdown is a text-to-HTML conversion tool for web developers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML. We can add styles, images, external APIs, and many more to the markdown files. As markdown converts text to HTML we can also add HTML code directly to our markdown file to add more functionality.&lt;/p&gt;

&lt;p&gt;Here is an example of my GitHub readme file.&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fwx0rmxwmpy4oww4e2jql.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fwx0rmxwmpy4oww4e2jql.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Do follow :)  &lt;a href="https://github.com/Amaan56" rel="noopener noreferrer"&gt;https://github.com/Amaan56&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let us learn a few basic syntaxes to get started with Markdown&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  Headings
&lt;/h2&gt;

&lt;p&gt;To make a normal text heading put # (single Hash) in front of it. We can have 6 types of headings like HTML from h1 to h6 just by increasing the number of the hash in front of the text from 1 to 6.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

&lt;h1&gt;
  
  
  Heading 1
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Heading 2
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Heading 3
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Heading 4
&lt;/h4&gt;

&lt;h5&gt;
  
  
  Heading 5
&lt;/h5&gt;

&lt;h6&gt;
  
  
  Heading 6
&lt;/h6&gt;

&lt;h2&gt;
  
  
  Paragraph
&lt;/h2&gt;

&lt;p&gt;You don't have to do anything for a paragraph in the markdown file as it gets automatically formated.&lt;/p&gt;

&lt;h2&gt;
  
  
  Make text bold
&lt;/h2&gt;

&lt;p&gt;You can make your text bold by starting and ending your text with **(double asterisks).&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**This is a bold text**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This is a bold text&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Make text italic
&lt;/h2&gt;

&lt;p&gt;You can make your text bold by starting and ending your text with *(single asterisks).&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;*This is italic text*
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This is italic text&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Horizontal Rules
&lt;/h2&gt;

&lt;p&gt;To add horizontal rules write three or more hyphens in a row.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;----
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;




&lt;h2&gt;
  
  
  Ordered List
&lt;/h2&gt;

&lt;p&gt;The ordered list can be added as below:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1. Item 1
2. Item 2
3. Item 3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Item 1&lt;/li&gt;
&lt;li&gt;Item 2&lt;/li&gt;
&lt;li&gt;Item 3&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Unordered List
&lt;/h2&gt;

&lt;p&gt;The unordered list can be added as below:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- Item 1
- Item 2
- Item 3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Item 1&lt;/li&gt;
&lt;li&gt;Item 2&lt;/li&gt;
&lt;li&gt;Item 3&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Hyperlink
&lt;/h2&gt;

&lt;p&gt;To have a web link in your document just put your link between square brackets [ ].&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[https://github.com/Amaan56]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Amaan56" rel="noopener noreferrer"&gt;https://github.com/Amaan56&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Image
&lt;/h2&gt;

&lt;p&gt;To add an image use the same syntax as the link but add ! (Exclamation) before square brackets.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;![https://i.pinimg.com/564x/ce/53/c5/ce53c5bcd350ba856e5c53c343376fb2.jpg]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fjo42ccokjvj9vbfmmyrv.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fjo42ccokjvj9vbfmmyrv.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Blockquote
&lt;/h2&gt;

&lt;p&gt;To put a blockquote, append the text with a with &amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; To create a blockquote
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;To create a blockquote&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And last but not the least, my favorite and used by most of the tech bloggers to add a &lt;strong&gt;code block&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;To add a code block in your markdown surround your code block with&lt;br&gt;
&lt;br&gt;
 ``` (triple-backticks). This will give you the below result.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

console.log("Hello World");


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here is great documentation to explore more: &lt;a href="https://www.markdownguide.org/basic-syntax/" rel="noopener noreferrer"&gt;https://www.markdownguide.org/basic-syntax/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have a nice day!&lt;/p&gt;

</description>
      <category>markdown</category>
      <category>github</category>
      <category>beginners</category>
      <category>blog</category>
    </item>
    <item>
      <title>How to center an element in HTML using CSS Flexbox and CSS grid.
</title>
      <dc:creator>Amaan Shaikh</dc:creator>
      <pubDate>Thu, 03 Dec 2020 01:59:39 +0000</pubDate>
      <link>https://dev.to/amaan56/how-to-center-an-element-in-html-using-css-flexbox-and-css-grid-10id</link>
      <guid>https://dev.to/amaan56/how-to-center-an-element-in-html-using-css-flexbox-and-css-grid-10id</guid>
      <description>&lt;p&gt;I have seen many developers struggling to center an element on the webpage using CSS. There are many applications where we want our HTML element to be at the center of the page. Usually, login or register forms are kept at the center of the webpage for a better user experience.&lt;/p&gt;

&lt;p&gt;In this article, I will help you with two ways to place an element at the center of the page by using CSS Flexbox and CSS grid.&lt;/p&gt;

&lt;p&gt;Consider an example where we just have a single form element in our HTML page and we have to center the same. The HTML code for this will be as below.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8" /&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0" /&amp;gt;
    &amp;lt;title&amp;gt;Center Form Element&amp;lt;/title&amp;gt;
    &amp;lt;link rel="stylesheet" href="styles.css" /&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;form&amp;gt;
      &amp;lt;h4&amp;gt;Login Form&amp;lt;/h4&amp;gt;
      &amp;lt;label for="email"&amp;gt;Email ID:&amp;lt;/label&amp;gt;
      &amp;lt;input type="text" placeholder="Enter your Email" name="email" id="email"/&amp;gt;
      &amp;lt;label for="password"&amp;gt;Password:&amp;lt;/label&amp;gt;
      &amp;lt;input type="password" placeholder="Enter your your password"name="password"/&amp;gt;
      &amp;lt;button&amp;gt;Login&amp;lt;/button&amp;gt;
    &amp;lt;/form&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Considering our body tag as a parent and form tag as a child we can center the form element by adding either of the following code snippets in our styles.css file&lt;/p&gt;

&lt;h3&gt;
  
  
  Centering an element using CSS Flexbox
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;body{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Centering an element using CSS Grid
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;body {
  display: grid;
  place-items: center;
  height: 100vh;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Please note &lt;code&gt;height: 100vh&lt;/code&gt; is given to make sure that the body is taking the full height of the webpage.&lt;/p&gt;

&lt;p&gt;Happy Reading!&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>flexbox</category>
      <category>cssgrid</category>
    </item>
    <item>
      <title>3 ways to add CSS to your HTML web page</title>
      <dc:creator>Amaan Shaikh</dc:creator>
      <pubDate>Thu, 03 Dec 2020 01:02:06 +0000</pubDate>
      <link>https://dev.to/amaan56/3-ways-to-add-css-to-your-html-web-page-3k8j</link>
      <guid>https://dev.to/amaan56/3-ways-to-add-css-to-your-html-web-page-3k8j</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F1fqm0208zete2rl42r66.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F1fqm0208zete2rl42r66.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You all must be aware of the analogy about HTML, CSS, and Javascript that is being made with the human body. If HTML is the bones, then CSS is the muscle and javascript is the brain of the webpage. &lt;/p&gt;

&lt;p&gt;There are millions of websites available on the internet, the only way for a website to stand out from others is its styling and interactivity. HTML pages without styles are just word documents getting displayed on the browser. So styles play a very crucial role in the development of any website.&lt;/p&gt;

&lt;p&gt;Styles can be added to any HTML page in three ways: &lt;strong&gt;Inline, Internal, and External&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Let's get into the details for these three ways and how to apply the same on our web page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Inline CSS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For inline styles, we use the style attribute of the HTML tags. CSS is passed as a string to the style attribute which adds the styles to the tags.&lt;/p&gt;

&lt;p&gt;For example: If we want to make our web page background blue with inline CSS, we can write something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;body style="background-color: blue"&amp;gt;&amp;lt;/body&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;But it is a best practice to separate styles from the HTML tags that is the reason internal and external CSS comes into the picture.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Internal CSS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For Internal CSS, a style tag is used in which all the styles related to the webpage are added. This style tag is added in the head tag of the page so that the styles are added even before the HTML document is rendered.&lt;/p&gt;

&lt;p&gt;For example: If we want to make our web page background as blue with internal css, we can right something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;head&amp;gt;
    &amp;lt;style&amp;gt;
      body {
        background-color: blue;
      }
    &amp;lt;/style&amp;gt;
 &amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Internal CSS does its job but imagine a scenario where we have to use the same styles for more than one page. In this case, if we use internal CSS it will lead to writing the same code twice, to overcome this external CSS is being used.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;External CSS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In external CSS we use a separate file with a .css extension where we write all our styles. This CSS file can be used by multiple webpages by using a link tag which is added under the head tag.&lt;/p&gt;

&lt;p&gt;For example: If we want to make our web page background as blue with external CSS, we have to make changes in two files.&lt;/p&gt;

&lt;p&gt;First, we will add all our styles to our CSS file, for our example, it will be styles.css&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;body{
     background-color: blue;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then we will link this css file to our html file as follows:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;head&amp;gt;
  &amp;lt;link rel="stylesheet" href="styles.css"&amp;gt;
&amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To get more understanding of this I would suggest applying the same by creating small projects.&lt;/p&gt;

&lt;p&gt;Happy Styling!&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>style</category>
    </item>
  </channel>
</rss>
