<?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: sutharrahul</title>
    <description>The latest articles on DEV Community by sutharrahul (@sutharrahul).</description>
    <link>https://dev.to/sutharrahul</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%2F966645%2F4062bfc1-a3a0-4539-9aa1-71b4c6ac1e00.png</url>
      <title>DEV Community: sutharrahul</title>
      <link>https://dev.to/sutharrahul</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sutharrahul"/>
    <language>en</language>
    <item>
      <title>Array Method</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sun, 19 Mar 2023 09:40:21 +0000</pubDate>
      <link>https://dev.to/sutharrahul/array-method-360l</link>
      <guid>https://dev.to/sutharrahul/array-method-360l</guid>
      <description>&lt;p&gt;Array is a collection of similar data elements stored at contiguous memory locations. It is the simplest data structure where each data element can be accessed directly by only using its index number. &lt;br&gt;
In array index number start with 0.&lt;br&gt;
Array data  [hello, array, java, c++, 1, 56, 23]&lt;br&gt;
Array index [ 0   ,   1  ,   2 ,  3 , 4, 5  ,6 ]&lt;/p&gt;
&lt;h2&gt;
  
  
  Array Method
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Array Length&lt;/strong&gt;&lt;br&gt;
array length use for get total number of array. How many elements stored in array&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let name = ['hello', 'world', 'Asia', 'india', 'america']
console.log(name.length)

outpur: 5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;Total number of element is 5&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Push&lt;/strong&gt; &lt;br&gt;
Insert the new value inside array but value/element will stored in last.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let namess = [12, 45, 76, 24, 46]
namess.push('VYOM','rah');
console.log(namess);

output: [12, 45, 76, 24, 46, 'VYOM','rah']
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Slice&lt;/strong&gt;&lt;br&gt;
The &lt;code&gt;slice()&lt;/code&gt; method returns a shallow copy of a portion of an array into a new array object selected from start to end ( end not included) where start and end represent the index of items in that array.&lt;br&gt;
&lt;em&gt;Syntax&lt;/em&gt;&lt;br&gt;
slice()&lt;br&gt;
slice(start)&lt;br&gt;
slice(start, end)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let namess = [12, 45, 76, 24, 46, 23, 86, 96]
console.log(namess.slice(1,7);

output: [ 45, 76, 24, 46, 23, 86 ]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Splice&lt;/strong&gt;&lt;br&gt;
The &lt;code&gt;splice()&lt;/code&gt; method changes the contents of an array by removing or replacing existing elements and/or adding new elements&lt;br&gt;
&lt;em&gt;Syntax&lt;/em&gt;&lt;br&gt;
splice(start)&lt;br&gt;
splice(start, deleteCount)&lt;br&gt;
splice(start, deleteCount, item1)&lt;br&gt;
splice(start, deleteCount, item1, item2, itemN)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let fruit = ['1', '2', '3', '4', 5, 6, 7, 8];
fruit.splice(2, 1, 'Apple', 'Banana');
console.log(fruit);

output: [ '1', '2', 'Apple', 'Banana', '4', 5, 6, 7, 8 ]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Concatenation&lt;/strong&gt;&lt;br&gt;
The &lt;code&gt;Concatenation&lt;/code&gt;method add two array.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let arr1 = [1, 2, 3, 4];
let arr2 = [5, 6, 7];
let arr3 = [8, 9, 10, 11, 12]; 
console.log(arr1.concat(arr2, arr3));

output: [1, 2, 3, 4, 5 , 6, 7, 8, 9, 10, 11, 12]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Include&lt;/strong&gt;&lt;br&gt;
The &lt;code&gt;include&lt;/code&gt; method returns "true or false" if the value stored in correct index output will "true" else output will be false.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let num = [1, 2, 3, 4, 5, 6, 7, 8];
console.log(num.includes(7, 6));

output: True

let num = [1, 2, 3, 4, 5, 6, 7, 8];
console.log(num.includes(7, 8));

output: false
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;7 is a value and 6 is index no. so 7 is stored in index of 6 output is true &lt;br&gt;
if (7,8) it's mean 7 is stored index of 8 which is false because 7 is stored in index of 6&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Indexof&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;Indexof&lt;/code&gt; method use to get index number of value means in which index no. value is stored.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let num = [1, 2, 3, 'Anurag', 4, 5, 6, 7, 8];
console.log(num.indexOf('Anurag'));

output: 3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;if the same value stored multiple times in same array in that case output will only one index number which come first.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Is Array&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;isarray&lt;/code&gt; Method use is this array or not if it is than output will true is not output will false&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let num = [1, 2, 3, 'Anurag', 4, 5, 6, 7, 8, 'Anurag', 'Anurag'];
console.log(Array.isArray(num));

output: True

let num1= dreamworld
console.log(Array.isArray(num1));

output: false
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Join&lt;/strong&gt;&lt;br&gt;
The &lt;code&gt;join&lt;/code&gt; method use when we want to add a value in array with all the value of array.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let Arr1 = [1, 2, 3, 4, 5, 6, 7];
let var1 = Arr1.join(' a '); //a will join all value of array
console.log(var1);

output:1 a 2 a 3 a 4 a 5 a 6 a 7 

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

&lt;/div&gt;



&lt;p&gt;lots Array method are available.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Media Query</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Wed, 28 Dec 2022 18:30:10 +0000</pubDate>
      <link>https://dev.to/sutharrahul/media-query-5b6e</link>
      <guid>https://dev.to/sutharrahul/media-query-5b6e</guid>
      <description>&lt;p&gt;When every we open any website in mobile phone we see the view of page is different as compare to pc because to pixel is different in pc and mobile. Media query do the same thing we can change page view by just using &lt;code&gt;@medi (max width 600px)&lt;/code&gt; we have to design. till 600px page view is different (what we design). Media query is Responsive Web Design. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Box Model</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Wed, 28 Dec 2022 18:07:45 +0000</pubDate>
      <link>https://dev.to/sutharrahul/box-model-3m8</link>
      <guid>https://dev.to/sutharrahul/box-model-3m8</guid>
      <description>&lt;p&gt;Box model is really useful because when we add height, weight, margin or padding to element than appears bigger than we set if we don't use box model. because calculation of element size is "height + padding + border =  actual height of an element" width + padding +border = actual width of element"&lt;br&gt;
if we don't use box sizing than div will be bigger. but If you set &lt;code&gt;box-sizing: border-box;&lt;/code&gt; on an element, padding and border are included in the width and height&lt;/p&gt;

</description>
      <category>showdev</category>
    </item>
    <item>
      <title>CSS Box Model</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sun, 25 Dec 2022 17:38:58 +0000</pubDate>
      <link>https://dev.to/sutharrahul/css-box-model-5f20</link>
      <guid>https://dev.to/sutharrahul/css-box-model-5f20</guid>
      <description>&lt;h2&gt;
  
  
  Margin :
&lt;/h2&gt;

&lt;p&gt;Margin are use to create space around element form all four border.&lt;br&gt;
Example &lt;br&gt;
&lt;code&gt;margin: 10px 12px 15px 20px&lt;/code&gt; it cerate space 10px form top 12px from right 15px from bottom and 20px from left. if we just want create space only one side could be top or bottom or right or left we can simply use these property.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;margin-top: ;
margin-right: ;
margin-bottom: ;
margin-left: ;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Padding:
&lt;/h2&gt;

&lt;p&gt;Padding are use to create space around element content but inside of boarder. we can create space to top , bottom, right and left.&lt;br&gt;
&lt;code&gt;padding: 10px 12px 15px 20px&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;padding-top: ;
padding-right: ;
padding-bottom: ;
padding-left: ;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2F2xdz6qlchc52loo7lk3s.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%2F2xdz6qlchc52loo7lk3s.png" alt="Image description" width="800" height="417"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>development</category>
    </item>
    <item>
      <title>Flex-Box (Align-item)</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sun, 25 Dec 2022 17:13:16 +0000</pubDate>
      <link>https://dev.to/sutharrahul/flex-box-align-item-1451</link>
      <guid>https://dev.to/sutharrahul/flex-box-align-item-1451</guid>
      <description>&lt;p&gt;Align item same as justify-content but justify-content set item on horizontal line but when we want to adjust item in vertical line we use align-item.&lt;br&gt;
syntex is&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.flxbox{
display:flex;
flex-direction:row | column;
align-item: flex-star | flex-end | center;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>gratitude</category>
      <category>ai</category>
      <category>llm</category>
    </item>
    <item>
      <title>Justify-content in Flex Box</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sun, 25 Dec 2022 14:44:35 +0000</pubDate>
      <link>https://dev.to/sutharrahul/justify-content-in-flex-box-pi3</link>
      <guid>https://dev.to/sutharrahul/justify-content-in-flex-box-pi3</guid>
      <description>&lt;p&gt;Simply we can say that justify contet set items horizontal.&lt;br&gt;
but with it has also few property.&lt;br&gt;
&lt;code&gt;.flxbox{&lt;br&gt;
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Flex-star (default) :
&lt;/h2&gt;

&lt;p&gt;Item are set on star (left side of page). If we use &lt;code&gt;row-revers&lt;/code&gt; but we want that item should be start from left side. so we use &lt;code&gt;justify-content: flex-start&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;justify-content: flex-start;&lt;/code&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2raf5gGW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l4pdc3rxsq3s687hbvy6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2raf5gGW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l4pdc3rxsq3s687hbvy6.png" alt="Image description" width="880" height="557"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  flex-end:
&lt;/h2&gt;

&lt;p&gt;Item are set on end (right side of page)&lt;br&gt;
&lt;code&gt;justify-content: flex-end;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--d5n9tfSD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fk51z77tahs338lpa0gx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--d5n9tfSD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fk51z77tahs338lpa0gx.png" alt="Image description" width="880" height="541"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  flex-center:
&lt;/h2&gt;

&lt;p&gt;This property set out item on center of the page &lt;br&gt;
&lt;code&gt;justify-content: center;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zESzrGZR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5wexhqyhfy5gpehphrtf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zESzrGZR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5wexhqyhfy5gpehphrtf.png" alt="Image description" width="880" height="307"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  space-between:
&lt;/h2&gt;

&lt;p&gt;Items are evenly distributed in the line; first item is on the start line, last item on the end line.&lt;br&gt;
&lt;code&gt;justify-content: space-between;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--XFG5hRXB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xjjzahyqhylh10mumlvt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XFG5hRXB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xjjzahyqhylh10mumlvt.png" alt="Image description" width="880" height="304"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  space-around:
&lt;/h2&gt;

&lt;p&gt;To create evenly space around items &lt;br&gt;
&lt;code&gt;justify-content: space-around;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--eK8gCp8a--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/163ahn5k4tx1zef17nq6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eK8gCp8a--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/163ahn5k4tx1zef17nq6.png" alt="Image description" width="880" height="309"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  space-evenly:
&lt;/h2&gt;

&lt;p&gt;Items are distributed so that the spacing between any two items (and the space to the edges) is equal.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Flex Box</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sun, 25 Dec 2022 14:24:11 +0000</pubDate>
      <link>https://dev.to/sutharrahul/flex-box-411h</link>
      <guid>https://dev.to/sutharrahul/flex-box-411h</guid>
      <description>&lt;p&gt;Flex has few more property and the one is&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;flex-wrap &lt;br&gt;
&lt;code&gt;.flexbx{&lt;br&gt;
  flex-wrap: nowrap | wrap | wrap-reverse;&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
When ever you reduce page size this will place item to next line&lt;/p&gt;
&lt;/blockquote&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%2Ffa4t53a0wdygtr7zxfqr.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%2Ffa4t53a0wdygtr7zxfqr.png" alt="Image description" width="445" height="263"&gt;&lt;/a&gt;&lt;br&gt;
This property is much useful when we reduce page size. &lt;/p&gt;

</description>
      <category>gratitude</category>
    </item>
    <item>
      <title>Flex Box</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sun, 25 Dec 2022 14:14:29 +0000</pubDate>
      <link>https://dev.to/sutharrahul/flex-box-1a27</link>
      <guid>https://dev.to/sutharrahul/flex-box-1a27</guid>
      <description>&lt;p&gt;Flex Box is one dimensional layout. Flex box deals with layout in one dimensional at a time either as row or as a column. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;br&gt;
.flxbox{&lt;br&gt;
display:flex;&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
flex box has 4 main axis:&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Row (default)
&lt;/h2&gt;

&lt;p&gt;when we use &lt;code&gt;display:flex&lt;/code&gt; out items set by default as row and the direction is left to right.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;{&lt;br&gt;
flex-direction: row;&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Row-revers:
&lt;/h2&gt;

&lt;p&gt;It set out items in revers  order  like &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;4 3 2 1 and it will show right to left.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;code&gt;&lt;br&gt;
{&lt;br&gt;
flex-direction: row-reverse;&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Column
&lt;/h2&gt;

&lt;p&gt;It is out item in column(same as row but top to bottom)&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;br&gt;
 flex-direction: column;&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  4. column-reverse
&lt;/h2&gt;

&lt;p&gt;set items bottom to top (in revers order)&lt;br&gt;
&lt;code&gt;flex-direction: column-reverse;&lt;/code&gt;&lt;/p&gt;

</description>
      <category>cryptocurrency</category>
      <category>bitcoin</category>
      <category>security</category>
    </item>
    <item>
      <title>Audio and Video Tag HTML</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sat, 24 Dec 2022 08:58:39 +0000</pubDate>
      <link>https://dev.to/sutharrahul/audio-and-video-tag-html-1c44</link>
      <guid>https://dev.to/sutharrahul/audio-and-video-tag-html-1c44</guid>
      <description>&lt;p&gt;Whenever we visit any web site some time we see a video or audio like music and all is play there. and that video is not available on You-tube. so uses of audio and video tag when we want to add some video content or audio we use Audio video tag.&lt;br&gt;
syntax of Audio and Video tag is ;&lt;br&gt;
&lt;code&gt;&amp;lt;audio src="____"&amp;gt;audio&amp;lt;/audio&amp;gt;&lt;br&gt;
&amp;lt;video src="___"&amp;gt;video&amp;lt;/video&amp;gt;&lt;/code&gt;&lt;br&gt;
this will show video or audio on our page.&lt;br&gt;
To control video we can also add attributes like &lt;br&gt;
-control&lt;br&gt;
-height &lt;br&gt;
-width &lt;br&gt;
-loop&lt;br&gt;
-Autoplay &lt;br&gt;
Why we should use attributes ?&lt;br&gt;
because to make out page more responsive &lt;br&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%2Fplbgfjy75lsyqazn7sja.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%2Fplbgfjy75lsyqazn7sja.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mentalhealth</category>
      <category>watercooler</category>
    </item>
    <item>
      <title>CSS selector</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Mon, 21 Nov 2022 06:55:12 +0000</pubDate>
      <link>https://dev.to/sutharrahul/css-selector-l54</link>
      <guid>https://dev.to/sutharrahul/css-selector-l54</guid>
      <description>&lt;p&gt;Selectors in CSS:&lt;br&gt;
selector in css is very important to make web page good in term of look. it's make easy to target which part we want to style or change. &lt;br&gt;
&lt;strong&gt;Type of selector&lt;/strong&gt;&lt;br&gt;
Universal selector&lt;br&gt;
Individual selector &lt;br&gt;
Class and I'd selector &lt;br&gt;
Combined selector&lt;br&gt;
Inside an element &lt;br&gt;
Direct child &lt;br&gt;
Sibling ~ or +&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Universal selector&lt;/strong&gt;: It's select every thing on canvas. &lt;br&gt;
&lt;code&gt;*{&lt;br&gt;
    background-color:black;&lt;br&gt;
    color: white;&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
it will change our background in black and fonts will be white.&lt;br&gt;
use of this selector is change web page background color and if we want same fonts on page than we use universal selector.&lt;br&gt;
Individual selector : This selector  is use when we want change in tag like &lt;/p&gt;
&lt;p&gt;, &lt;/p&gt; etc. but it will change in all tag's like we use 5 "p" tag or 5 "div" than all 5 will b change 

&lt;p&gt;&lt;strong&gt;Class and I'd selector&lt;/strong&gt;:&lt;br&gt;
This selector use for id attribute in html,&lt;br&gt;
&lt;/p&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;style&amp;gt;
#my1 {
        background-color: #ef9323;
        color: #FFFFFF;
        }
&amp;lt;/style&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;div id="my1"&amp;gt;Hello&amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;



&lt;p&gt;only "Hello" will be change but if we use multiple &lt;/p&gt; than all  will change.

&lt;p&gt;&lt;strong&gt;Combined selector&lt;/strong&gt;: When we want to select multiple tag by use just one CSS we use combined selector. syntax.&lt;br&gt;
&lt;/p&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;style&amp;gt;
span, li {
        background-color: burlywood;
      }

 &amp;lt;/style&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;span&amp;gt;Span is just a span, nothing more&amp;lt;/span&amp;gt;
&amp;lt;ul&amp;gt;
      &amp;lt;li &amp;gt;item1&amp;lt;/li&amp;gt;
      &amp;lt;li &amp;gt;item2&amp;lt;/li&amp;gt;
      &amp;lt;li &amp;gt;item3&amp;lt;/li&amp;gt;
      &amp;lt;li &amp;gt;item4&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;item5&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;



&lt;p&gt;Only "Span is just a span, nothing more" and "item" will change.&lt;br&gt;
*&lt;em&gt;Inside an element *&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;div ul li {
        background-color: #yellow;
      }
&amp;lt;html&amp;gt;
 &amp;lt;div&amp;gt;
      &amp;lt;p&amp;gt;lorem&amp;lt;/p&amp;gt;
      &amp;lt;li&amp;gt;awesome&amp;lt;/li&amp;gt;
      &amp;lt;ul&amp;gt;
        &amp;lt;li&amp;gt;highlight me 1&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;highlight me 2&amp;lt;/li&amp;gt;
      &amp;lt;/ul&amp;gt;
    &amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;



&lt;p&gt;in this selector only highlight me 1 and highlight me 2 change&lt;/p&gt;

</description>
      <category>leaning</category>
    </item>
    <item>
      <title>Table in HTMl</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Tue, 15 Nov 2022 08:10:39 +0000</pubDate>
      <link>https://dev.to/sutharrahul/table-in-html-2bh</link>
      <guid>https://dev.to/sutharrahul/table-in-html-2bh</guid>
      <description>&lt;p&gt;feeling really amazing bcoz today in make my 1 table in HTML &lt;/p&gt;

&lt;p&gt;the code &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oUwUyzvO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cehpfwt3pz66okj9xat9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oUwUyzvO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cehpfwt3pz66okj9xat9.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
the result&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Fgn5SsVv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fytzzki5t759cg6vbswe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Fgn5SsVv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fytzzki5t759cg6vbswe.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTML tags</title>
      <dc:creator>sutharrahul</dc:creator>
      <pubDate>Sun, 06 Nov 2022 09:20:18 +0000</pubDate>
      <link>https://dev.to/sutharrahul/html-tags-2doj</link>
      <guid>https://dev.to/sutharrahul/html-tags-2doj</guid>
      <description>&lt;p&gt;In HTML use tags like "h" , "P", "lorem".&lt;br&gt;
"h" use for header file like i am posting this Article and my title is "HTML tag" so this a basically it a my header file &lt;br&gt;
P tag use for writing a paragraph if i want to write anything like a story i use P tag. &lt;br&gt;
The lorem tag inserts a specified amount of random text&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
