<?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: Hemanth_Polisetti</title>
    <description>The latest articles on DEV Community by Hemanth_Polisetti (@hemanthpolisetti).</description>
    <link>https://dev.to/hemanthpolisetti</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%2F928721%2F48799d3f-ca4b-4e24-8232-ac9620867620.jpeg</url>
      <title>DEV Community: Hemanth_Polisetti</title>
      <link>https://dev.to/hemanthpolisetti</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hemanthpolisetti"/>
    <language>en</language>
    <item>
      <title>Flex-Box&amp; Flex</title>
      <dc:creator>Hemanth_Polisetti</dc:creator>
      <pubDate>Fri, 23 Sep 2022 10:39:09 +0000</pubDate>
      <link>https://dev.to/hemanthpolisetti/flex-box-flex-52ee</link>
      <guid>https://dev.to/hemanthpolisetti/flex-box-flex-52ee</guid>
      <description>&lt;p&gt;For Better Understanding of Flex we have to know what is Flex-Box.&lt;/p&gt;

&lt;p&gt;Flex-box:It is a new layout mode in CSS3. This layout make the elements behave relatively to different display sizes and display devices.&lt;/p&gt;

&lt;p&gt;Flex-box have Flex-Container and Flex-Items.&lt;br&gt;
    Flex-container specifies the properties of parent.It is declared by setting the display property of flex or inline-flex.&lt;br&gt;
    Flex-items specifies the properties of children.These are inside flex-container.&lt;/p&gt;

&lt;p&gt;Flex-items are set along horizantal flex line by default.&lt;br&gt;
These are mainly two axis to align flex items in flex container they are main axis and cross axis.Those are perpendicular to each other.&lt;br&gt;
Main axis is along the line of flex.It will be horizantal is line of axis is horizantal and viceversa.&lt;/p&gt;

&lt;p&gt;Flex-Box Properties:-&lt;/p&gt;

&lt;p&gt;Display =&amp;gt; Used to specify the type of box used for an HTML ELement.&lt;br&gt;
Flex-Direction =&amp;gt; To specify the line of axis of flex items&lt;br&gt;
Justify-Content =&amp;gt; To align items horizantally when the items didn't use all the available space on main axis.&lt;br&gt;
Align-items =&amp;gt; To align items Vertically when the items didn't use all the available space on cross axis.&lt;br&gt;
Flex-Wrap =&amp;gt; It specifies whether flex items wrap or not,if there is not enough room for the flex item in container.&lt;br&gt;
Align-Content =&amp;gt; It aligns flex-line,it is used to modify the flex-wrap property.&lt;br&gt;
Flex-Flow =&amp;gt; It specifies a shorthand property for flex direction &amp;amp; flex wrap.&lt;br&gt;
Order =&amp;gt; It specifies the order of a flex item relatively to another flex item in the same container.&lt;br&gt;
ALign-Self =&amp;gt; It is used on flex-items it overrides container's Align items property.&lt;/p&gt;

&lt;p&gt;Then,&lt;br&gt;
The flex property is only works on the flex-items,It is used to set the length of the flexible items.The length of the flex items is depend on flex grow, flex shrink,flex basis.&lt;br&gt;
We can simply say flex is the shorthand for these three properties.&lt;/p&gt;

&lt;p&gt;"flex val1 val2 val3"&lt;/p&gt;

&lt;p&gt;val1 refers to flex grow, It is positive number without units and it specifies how much the flex item have to grow in size relative to other flex items.&lt;br&gt;
val2 refers to flex shrink, It is positive number without units and it specifies how much the flex item have to shrink in size relative to other flex items.&lt;br&gt;
val3 refers to flex basis,It specifies the initial length of the flex item from where it have to start growing or shrinking.&lt;/p&gt;

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

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>CSS Display Properties</title>
      <dc:creator>Hemanth_Polisetti</dc:creator>
      <pubDate>Tue, 20 Sep 2022 12:42:34 +0000</pubDate>
      <link>https://dev.to/hemanthpolisetti/css-display-properties-al6</link>
      <guid>https://dev.to/hemanthpolisetti/css-display-properties-al6</guid>
      <description>&lt;p&gt;1) Block :- It occupies all the space of the container and a line above and below to it.It always start with new line&lt;br&gt;
2)Inline :- It occupies the space it need and it doesn't need to start in new line but it can`t support to adjust the height and width of the content&lt;br&gt;
3)Inline-Block :- It is similar to Inline property , unlike inline property it supports to adjust the height and width of the content&lt;br&gt;
4)None :- It display nothing,simply it removes the content from displaying.&lt;/p&gt;

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

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>HTML TAGS</title>
      <dc:creator>Hemanth_Polisetti</dc:creator>
      <pubDate>Tue, 20 Sep 2022 11:09:39 +0000</pubDate>
      <link>https://dev.to/hemanthpolisetti/html-tags-5c65</link>
      <guid>https://dev.to/hemanthpolisetti/html-tags-5c65</guid>
      <description>&lt;p&gt;1.What is HTML Tag?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Image result for what is html tag
An HTML tag is a piece of markup language used to indicate 
the beginning and end of an HTML element in an HTML document.
2.What are the types of HTML Tags?&lt;/li&gt;
&lt;li&gt;These are mainly classified into Two Types:-
    a)Based on their structure
    b)Based on their usage&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;a)Based on their Structure it`s further classified into two types:&lt;br&gt;
        i)Opening and Closing Tags&lt;br&gt;
       ii)Self-Closing Tags&lt;br&gt;
i) Opening and Closing Tags: These have an opening tag and closing tag.if a tag is opened it should definetely closed.&lt;br&gt;
Example:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt; &lt;/code&gt;&lt;/p&gt;

&lt;p&gt;ii) Self-Closing Tags: These have only one Tag,It will be closed at the end of the opening tag(No seperate tags are Required).&lt;br&gt;
Example:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;input type="" &amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;b)Based On Their Usage it`s further classified into two types:&lt;br&gt;
        i)Block Level Tags&lt;br&gt;
       ii)Inline Level Tags&lt;br&gt;
i)Block Level Tags: The Elements which occupy the whole Available space bound by the tags and these tags start in new line.&lt;br&gt;
Example:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;ii)Inline Level Tags: The Elements which only occupy the necessary space bound by the tags and these are doesn`t need to start in a new line.&lt;br&gt;
Example:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;3.Some most used HTML Tags: &lt;br&gt;
-&amp;gt; Div tag&lt;br&gt;
-&amp;gt; Heading tags&lt;br&gt;
-&amp;gt; Paragraph tag&lt;br&gt;
-&amp;gt; break tag&lt;br&gt;
-&amp;gt; span tag&lt;br&gt;
-&amp;gt; image tag&lt;br&gt;
-&amp;gt; anchor tag&lt;br&gt;
-&amp;gt; table tag&lt;br&gt;
-&amp;gt; pre(preformatted) tag&lt;br&gt;
-&amp;gt; form tag&lt;br&gt;
-&amp;gt; input tag&lt;br&gt;
-&amp;gt; textarea tag&lt;br&gt;
-&amp;gt; select tag&lt;br&gt;
-&amp;gt; button tag&lt;/p&gt;

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

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>HTTP</title>
      <dc:creator>Hemanth_Polisetti</dc:creator>
      <pubDate>Mon, 19 Sep 2022 12:04:43 +0000</pubDate>
      <link>https://dev.to/hemanthpolisetti/http-4kkj</link>
      <guid>https://dev.to/hemanthpolisetti/http-4kkj</guid>
      <description>&lt;p&gt;1.What is HTTP?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HyperTextTransferProtocol.&lt;/li&gt;
&lt;li&gt;It is the Communication between the Client &amp;amp; WebServer.&lt;/li&gt;
&lt;li&gt;It takes Requests and Returns Response from server.&lt;/li&gt;
&lt;li&gt;It returns Headers and Body with Every Request.&lt;/li&gt;
&lt;li&gt;It is Stateless means every request is independent(at its 
core means without cookies.It doesn`t remember anything).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.What is HTTPS?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HyperTextTransferProtocolSecure.&lt;/li&gt;
&lt;li&gt;It Encrypts the data in between the transactions(request and   response).&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Data is Encrypted using SSL/TLS.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SSL stands for Secured Socket Layer.&lt;/li&gt;
&lt;li&gt;TLS  stands for Transport Security Layer.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Security will be provided by installing an SSL/TLS &lt;br&gt;&lt;br&gt;
certificate on webhost.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;3.What are HTTP METHODS?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;When a request is made to server there is a method attached to it.For different purposes different methods will be used.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;GET request:&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It mainly used to Fetch data from server like loading a HTML page,loading Json data ,xml data etc...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;POST request:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It used to when adding data to server or posting/sending data to server.&lt;/p&gt;

&lt;p&gt;Unlike Get request it doesn`t show the request in URL.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PUT request:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It used to update the data on the server&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;DELETE request:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It used to delete the data on the server&lt;/p&gt;

&lt;p&gt;4.What Are HTTP Header Fields?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;HTTP header fields are a list of strings sent and received by both the client program and server on every HTTP request and response. These headers are usually invisible to the end-user and are only processed or logged by the server and client applications.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;There are 3 types of header fields: &lt;br&gt;
   -General header fields&lt;br&gt;
   -Response header fields&lt;br&gt;
   -Request header fields&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;General header fields(important Fields in General headers):&lt;br&gt;
  Request URL: URL which is used to make a request&lt;br&gt;
  Request Method:Which HTTP Method is used to make request&lt;br&gt;
  Status Codes: It shows the status of the webpage(It will be explained clearly in the next section)&lt;br&gt;
  Remote Address: IP Address of the computer &lt;br&gt;
  Referral Policy:It controls how much referrer info should be included with request &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Response Headers(important Fields in Response headers):&lt;br&gt;
  Server:The info about who host the server&lt;br&gt;
  Set-cookie:The Set-Cookie HTTP response header is used to send a cookie from the server to the user agent, so that the user agent can send it back to the server later. To send multiple cookies, multiple Set-Cookie headers should be sent in the same response. &lt;br&gt;
  Content-Type:Which type of data is sending from server&lt;br&gt;
  Content-Length:The length of the content&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Request Headers(important Fields in Request headers):&lt;br&gt;
  Cookies:Cookies which sent by request url to Server which are previously stored when server sent them to browser by set-cookies header.&lt;br&gt;
  Accept-xxx:The Support of the browser like accepting encoding of language, Program etc...&lt;br&gt;
  content-type &amp;amp; content-length:Same as response header fields&lt;br&gt;
  Authorization: Sending tokens to Authorize the user.&lt;br&gt;
  User-Agent:The Details of the web-browser of the user.&lt;br&gt;
  Referrer:The Referer header allows a server to identify a page where people are visiting it from.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;5.What Are Status Codes?&lt;br&gt;
 An HTTP status code is a message a website's server sends to the browser to indicate whether or not that request can be fulfilled.&lt;br&gt;
 It has some ranges to indicate the website is working or not.&lt;br&gt;
    100-200: INFORMATIONAL&lt;br&gt;
      It indicates Request is recieved and It is processing&lt;br&gt;
    200-300: SUCCESS&lt;br&gt;
      It indicates Request is Successfully recieved,understood and accepted&lt;br&gt;
    300-400: REDIRECT&lt;br&gt;
      It indicates further action must be taken like redirecting&lt;br&gt;
    400-500: CLIENT ERROR&lt;br&gt;
      Request error either requested url is not correct or the request is not in the server&lt;br&gt;
    500-600:SERVER ERROR&lt;br&gt;
      Server Failed to fetch the valid request&lt;br&gt;
 Some Commonly Used Status Codes:&lt;br&gt;
    200 - Ok&lt;br&gt;
    201 - Ok Created&lt;br&gt;
    301 - Moved to New Url&lt;br&gt;
    304 - Not Modified&lt;br&gt;
    400 - Bad Request&lt;br&gt;
    401 - Unauthorized&lt;br&gt;
    404 - Not Found&lt;br&gt;
    500 - Internal Server Error.&lt;/p&gt;

&lt;p&gt;6.Difference Between HTTP 1.1 &amp;amp; HTTP 2 ?&lt;br&gt;
   HTTP2 is fast,efficient and more secure than HTTP 1.1&lt;br&gt;
   In HTTP 1.1  HTML , CSS and Script are requested individually and get response individually whereas in Http2 CSS and Script are requested simultaneously and response also fetched simultaneously.&lt;br&gt;
   HTTP2 uses a more advanced compression method called HPACK that eliminates redundant information in HTTP header packets. &lt;/p&gt;

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

&lt;/div&gt;

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