<?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: SwarupaKulkarni</title>
    <description>The latest articles on DEV Community by SwarupaKulkarni (@swarupakulkarni).</description>
    <link>https://dev.to/swarupakulkarni</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%2F1032374%2F28040664-43f7-4d25-8477-6a1a47e85fcb.png</url>
      <title>DEV Community: SwarupaKulkarni</title>
      <link>https://dev.to/swarupakulkarni</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/swarupakulkarni"/>
    <language>en</language>
    <item>
      <title>Introduction to CSS and CSS Selectors</title>
      <dc:creator>SwarupaKulkarni</dc:creator>
      <pubDate>Mon, 10 Apr 2023 12:59:57 +0000</pubDate>
      <link>https://dev.to/swarupakulkarni/introduction-to-css-and-css-selectors-2p92</link>
      <guid>https://dev.to/swarupakulkarni/introduction-to-css-and-css-selectors-2p92</guid>
      <description>&lt;p&gt;&lt;strong&gt;CSS (Cascading style sheets)&lt;/strong&gt; is used to style and lay out web pages. CSS is used to describe how HTML elements can be displayed&lt;br&gt;
on the web page. For example if you want to alter the font, color, size and other decorative features.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;CSS Selectors:&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
CSS selectors select the HTML elements we want to customize. &lt;br&gt;
In CSS, selectors are used to target the HTML elements which we want to style. There are following types of selectors:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Universal Selector:-&lt;/strong&gt;&lt;br&gt;
As the name suggests, Universal Selector in CSS is used to select all the HTML elements such as &lt;code&gt;&amp;lt;p&amp;gt;,&amp;lt;h1&amp;gt;,&amp;lt;img&amp;gt;,&amp;lt;li&amp;gt;&lt;/code&gt; etc. Therefore, &lt;br&gt;
the Universal selector can affect to the entire HTML elements on a web page.&lt;br&gt;
(*) asteric symbol donates the universal selector in CSS.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;What is the use of UNiversal Selector:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;It is used to miantain the consistent styles on the browsers.Because each browser has its own style.&lt;br&gt;
You will never have to select each element and apply the style.By using Universal selector you can style the entire web page &lt;br&gt;
&amp;amp; avoid too much work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:&lt;/strong&gt;&lt;br&gt;
The syntax of Universal Selector is as follows:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;* {&lt;br&gt;
property: value;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.Individual Selector:&lt;/strong&gt;&lt;br&gt;
You can address any element like &lt;code&gt;&amp;lt;div&amp;gt;,&amp;lt;span&amp;gt;,&amp;lt;li&amp;gt;,&amp;lt;p&amp;gt;&lt;/code&gt; etc. As the name suggests, the Individual selector in CSS selects a particular or individual element on the web page.&lt;/p&gt;

&lt;p&gt;What is the use of Individual selector:&lt;br&gt;
If you want to target or style a particular element, you can use Individual selector.So that only that element will get affected.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:-&lt;/strong&gt;&lt;br&gt;
The syntax of Individual selector is as follows:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;element {&lt;br&gt;
         property:value;&lt;br&gt;
        }&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Class and ID selector:&lt;/strong&gt;&lt;br&gt;
 A class selector in CSS is used to select HTML elements based on their class names which are specified as an attribute within an HTML tag.&lt;br&gt;
 The class name is preceded by a dot(.) like .test. Multiple elements may have the same class attribute so by using class slector, it will&lt;br&gt;
affect all the HTML elements of that particular class. A class name can be any string value having uppercase or lowercase letters, digits, hyphen, and underscore.&lt;br&gt;
A CSS class name cannot have a space within it&lt;br&gt;
&lt;strong&gt;_&lt;br&gt;
What is the use of class selector?_&lt;/strong&gt;&lt;br&gt;
We can select the multiple elements with same classname &amp;amp; apply same style to them.&lt;br&gt;
Class selectors are used to add specific styles to elements based on their specified class name.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:&lt;/strong&gt;&lt;br&gt;
we can declare classname in HTML elements by using class attribute is as follows:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;element class="classname"&amp;gt;&amp;lt;/element&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;We can add  CSS styles by using above example of class attribute:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.classname{&lt;br&gt;
          property:value;&lt;br&gt;
          }&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ID selector:&lt;/strong&gt;&lt;br&gt;
By using ID selector, we can assign a unique identifier to an HTML element &amp;amp; we can style it by referencing the unique identifier. The ID selector uses the ID attribute&lt;br&gt;
of an HTML element to select a unique element. Use (#) sign followed by the ID of the HTML element. This ID should be unique within the page.ID selector and ID name must be same.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:&lt;/strong&gt;&lt;br&gt;
The syntax of ID selector is as follows:&lt;br&gt;
&lt;code&gt;.ID name{&lt;br&gt;
    property:value;&lt;br&gt;
   }&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. And selector(chained):-&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Dot(.) works as AND. We can target a particular element by using the AND selector.It is useful when you have multiple elements with same properties.&lt;br&gt;
example:&lt;br&gt;
&lt;code&gt;li.bg-black.text-white{&lt;br&gt;
background-color: #000000;&lt;br&gt;
color: #efg3232&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Combined Selector:&lt;/strong&gt;&lt;br&gt;
By using Combined selector you can target multiple elements at the same time by using (,) comma.&lt;br&gt;
syntax:&lt;/p&gt;

&lt;p&gt;We can use Combined selectors by using comma as follows:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;element1,element2{&lt;br&gt;
property:value;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;span,li{&lt;br&gt;
background-color: burlywood;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Inside an element:&lt;/strong&gt;&lt;br&gt;
By using Inside an element selector we can target the elements with the order we want by using just space. Don't need comma or anything use just space.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;element1 element2 element3{&lt;br&gt;
property:value;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;example:-&lt;br&gt;
&lt;code&gt;div ul li{&lt;br&gt;
background-color:#4b35f1;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Direct child:-&lt;/strong&gt;&lt;br&gt;
The direct child selector is used to select the direct child of the specified element. The direct child selector is represented by the greater than(&amp;gt;) sign. You can use (&amp;gt;) sign&lt;br&gt;
between two elements.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**Syntax:-**
  `element1 &amp;gt; element2 {
  property:value;
  }`
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;example:-&lt;br&gt;
&lt;code&gt;div &amp;gt; li {&lt;br&gt;
background-color: #7667e4;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8.Sibling ~ or + :-&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The sibling selector is used to select the adjacent element of the specified element. The sibling is represented by (~) tilde sign or (+) plus sign.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:-&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;elemnet1 + element2 {&lt;br&gt;
proprty:value;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Example:-&lt;br&gt;
&lt;code&gt;.sibling + p{&lt;br&gt;
background-color: #pink;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;9. Psuedo elements:&lt;/strong&gt;&lt;br&gt;
A CSS pseudo-element is used to style specified parts of an element.&lt;/p&gt;

&lt;p&gt;For example, it can be used to:&lt;/p&gt;

&lt;p&gt;1.Style the first letter, or line, of an element&lt;br&gt;
2.Insert content before, or after, the content of an element.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. ::before pseudo element:-&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The ::before pseudo-element can be used to insert some content before the content of an element.&lt;/p&gt;

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

&lt;p&gt;&lt;code&gt;h1 :: before{&lt;br&gt;
content: '';&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. ::after pseudo element:-&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The ::after pseudo-element can be used to insert some content after the content of an element.&lt;/p&gt;

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

&lt;p&gt;&lt;code&gt;h1 :: after{&lt;br&gt;
content: '';&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introduction to Web server and HTML</title>
      <dc:creator>SwarupaKulkarni</dc:creator>
      <pubDate>Tue, 28 Feb 2023 13:41:29 +0000</pubDate>
      <link>https://dev.to/swarupakulkarni/introduction-to-web-server-and-html-55jb</link>
      <guid>https://dev.to/swarupakulkarni/introduction-to-web-server-and-html-55jb</guid>
      <description>&lt;p&gt;In this article we are going to learn about what is web server and few basic tags of the HTML.&lt;br&gt;
As a beginner the first thought which comes to our mind after hearing the server is " Server means the racks of machines". But server does not mean the racks of machine but the&lt;br&gt;
server is a software that serves. Most famous web server is Apache2 .The Apache2 Server is a free and open-source cross-platform web server software.&lt;/p&gt;

&lt;h2&gt;
  
  
  About cPanel:
&lt;/h2&gt;

&lt;p&gt;cPanel is the simplify server management. It acts like an Interface between the server. People used to write their HTML CSS code and used to dump on the folder. These folders were given&lt;br&gt;
by the companies like bluehost  etc. Behind the scene there was the server installed like Apache2 &amp;amp; on top of that an interface was given to us which was cPanel&lt;/p&gt;

&lt;p&gt;cPanel has default serving .There was a folder &amp;amp; name of the folder was:&lt;br&gt;
&lt;strong&gt;/var/html/www&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;whenever you place any file inside these folders these files being served to you.&lt;/p&gt;

&lt;h2&gt;
  
  
  Live web servers
&lt;/h2&gt;

&lt;p&gt;One of the most popular  &amp;amp; useful live web server extension is &lt;strong&gt;&lt;em&gt;Ritwick Dey's live server.&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
It makes your existing server live. You can easily reload the dynamic pages by using this extension.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to install the live server extension?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;First go to your editor. There will be a extension named tool. Open it &amp;amp; search "live web server". You can easily get it. There are lot more options of live web server. You can install any of them by taking a look at it. &lt;br&gt;
If you have already installed the live web server extension you just need to enable it &amp;amp; disable it as per your requirement. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnyrztg0m84ibpc6zz07y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnyrztg0m84ibpc6zz07y.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  HTML
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;HTML&lt;/strong&gt; stands for &lt;strong&gt;Hyper Text Markup Language.&lt;/strong&gt; HTML is the code which is used structure a web page and its content. HTML consist of the series of elements and contents.&lt;br&gt;
By using elements we can structure a web page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/strong&gt;&lt;br&gt;
when internet was getting designed ,there were lot of types of files which came around like pdf file, image file, text file etc. Everybody was having issue like what kind of file is this?&lt;br&gt;
So at that time the standard came up like whatever the file it is, you have to write the type of the document first so that browser will know the type of the document.&lt;br&gt;
Above we are clearly writing our type of document as &lt;em&gt;html&lt;/em&gt;.&lt;br&gt;
&lt;br&gt;
Browser needs to know in what language this page is being served. Whatever the first tag you are writing in that mention which language you are using. In above example we are using English language. &lt;em&gt;en&lt;/em&gt; means &lt;em&gt;English&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;HTML is divided into the TWO parts: &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;head
2.body&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;1. head:-&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The head part you can not see but still the info is there but majority is something we don't see. head is something that loads before body. Anything you write in head is not&lt;br&gt;
visible to end user. It is meant for extra information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Body :-&lt;/strong&gt;&lt;br&gt;
The information that you see on the web page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note :- The entire html page loads from the top to bottom.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HTML elements:&lt;/strong&gt;&lt;br&gt;
HTML elements has some parts mentioned below:&lt;br&gt;
&lt;strong&gt;1. Opening tag:-&lt;/strong&gt;&lt;br&gt;
This consist the name of the tag wrapped by the opening and closing angle brackets. This means the element begins or starts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.Closing tag:-&lt;/strong&gt;&lt;br&gt;
This is same as opening tag only the difference is it includes forward slash(/). This means the elements ends here.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. The content:-&lt;/strong&gt;&lt;br&gt;
Content is the part between opening tag and closing tag. Content is nothing but text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. The element:-&lt;/strong&gt;&lt;br&gt;
The opening tag, closing tag and content together forms the element.&lt;/p&gt;

&lt;p&gt;What are the attributes?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The elements/tags can have the attributes. Attributes is nothing but the properties.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvqjwzt2akchm6fe1q7pt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvqjwzt2akchm6fe1q7pt.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;List of some basic HTML elements:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.h1:-&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It defines the most &lt;strong&gt;important heading&lt;/strong&gt; in the HTML document.&lt;br&gt;
Example:-&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcnm5zey9l35m5jdq0plz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcnm5zey9l35m5jdq0plz.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Headings can range from h1 to h6. The most important heading is h1 and the least important heading is h6.&lt;br&gt;
Example:-&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F716dybcl81wrh7tkfdm2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F716dybcl81wrh7tkfdm2.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.p :-&lt;/strong&gt;&lt;br&gt;
p tag represents the &lt;strong&gt;paragraph&lt;/strong&gt;. &lt;br&gt;
Example:-&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiu3st4fzg8bqiuvm05oz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiu3st4fzg8bqiuvm05oz.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to write so many words without actually writing it?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you don't want to write paragraph manually you can use lorem and the number of words in between the opening and closing tag.&lt;br&gt;
It will give you required amount of words  in the paragraph. Make sure there is some space around p &amp;amp; /p then write lorem &amp;amp; the amount of words you required &amp;amp; then hit the tab it will give you 30 words.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcze2vu3d1e1mzxinmxqx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcze2vu3d1e1mzxinmxqx.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.br:-&lt;/strong&gt;&lt;br&gt;
If you want the content on the new line you can use br tag.&lt;br&gt;
Example:-&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2uchg0jn8po8koh233c6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2uchg0jn8po8koh233c6.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4.Image:-&lt;/strong&gt;&lt;br&gt;
Whenever you want to add an Image you can use img tag. In this tag src will be your local file or something from internet.&lt;br&gt;
alt means if by mistake your image is not visible then you can write the description of the image&lt;br&gt;
It is not mandatory to write alt.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1zrgk9epnj3lbqold6kn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1zrgk9epnj3lbqold6kn.png" alt=" " width="800" height="419"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Never ever download any image from google &amp;amp; use it. Because the owner of the image may charge you for the copyright.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here are some websites form where you can download any image for free.&lt;br&gt;
1.Unsplash&lt;br&gt;
2.pexels&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. The anchor element :-&lt;/strong&gt;&lt;br&gt;
The a HTML element (or anchor element), with its href attribute, creates a hyperlink to web pages, files, email addresses, locations in the same page, or anything else a URL can address.&lt;br&gt;
href is hyperlink reference.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi27wqhlef8ses1h37ter.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi27wqhlef8ses1h37ter.png" alt=" " width="800" height="211"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>celebrities</category>
      <category>latin</category>
    </item>
  </channel>
</rss>
