<?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: MD AZHAR MASOOD</title>
    <description>The latest articles on DEV Community by MD AZHAR MASOOD (@azharone).</description>
    <link>https://dev.to/azharone</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%2F966476%2F94e1fe93-05b1-4c14-97b1-11e98828a65d.jpg</url>
      <title>DEV Community: MD AZHAR MASOOD</title>
      <link>https://dev.to/azharone</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/azharone"/>
    <language>en</language>
    <item>
      <title>CSS jounerny is Just like Roller Coaster</title>
      <dc:creator>MD AZHAR MASOOD</dc:creator>
      <pubDate>Sun, 13 Nov 2022 08:54:54 +0000</pubDate>
      <link>https://dev.to/azharone/css-jounerny-is-just-like-roller-coaster-1b93</link>
      <guid>https://dev.to/azharone/css-jounerny-is-just-like-roller-coaster-1b93</guid>
      <description>&lt;p&gt;&lt;strong&gt;Table of Contents&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;introduction of css&lt;/li&gt;
&lt;li&gt;Basic selector&lt;/li&gt;
&lt;li&gt;Pseudo-class selector&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  let understand css
&lt;/h1&gt;

&lt;p&gt;Cascading Style Sheets is languages which used for described presentation of HTML.&lt;br&gt;
CSS also described how the element are going to rendered on screen.&lt;br&gt;
 &lt;strong&gt;css types&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;External: link tag is used to &lt;code&gt;link:css&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en-GB"&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;meta charset="utf-8" /&amp;gt;
    &amp;lt;title&amp;gt;External CSS Example&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;h1&amp;gt;Hello World!&amp;lt;/h1&amp;gt;
    &amp;lt;p&amp;gt;This is my first CSS example&amp;lt;/p&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;extenalcss&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;h1 {
  background-color: yellow;
  color: blue;
  border: 1px solid black;
}

p {
  color: red;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;internal : &lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt; tag used to inside head element
&lt;/li&gt;
&lt;/ul&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-GB"&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;meta charset="utf-8" /&amp;gt;
    &amp;lt;title&amp;gt;My CSS experiment&amp;lt;/title&amp;gt;
    &amp;lt;style&amp;gt;
      h1 {

        background-color: yellow;
        color: blue;
        border: 1px solid black;
      }

      p {
        color: red;
      }
    &amp;lt;/style&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;h1&amp;gt;AXM||internal css!&amp;lt;/h1&amp;gt;
    &amp;lt;p&amp;gt;This is my first CSS example&amp;lt;/p&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;inline: style tag used html element
&lt;/li&gt;
&lt;/ul&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-GB"&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;meta charset="utf-8" /&amp;gt;
    &amp;lt;title&amp;gt; inline CSS t&amp;lt;/title&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;h1 style="color: blue;background-color: yellow;border: 1px solid black;"&amp;gt;
      Hello World!
    &amp;lt;/h1&amp;gt;
    &amp;lt;p style="color:red;"&amp;gt; inline CSS exm&amp;lt;/p&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  let talk about selector
&lt;/h2&gt;

&lt;p&gt;selector target the  html css to applt style/css.&lt;/p&gt;

&lt;h2&gt;
  
  
  some selector we are going to understand by using example for better understanding.
&lt;/h2&gt;

&lt;p&gt;let start with our first selector ,that is any guess let me give u hint it apply in whole body , u get or not , yes, we are talking or going to guseess about&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 http-equiv="X-UA-Compatible" content="IE=edge"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;title&amp;gt; CSS||AXM&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;
    &amp;lt;div  class="div-1"&amp;gt;   welcome to class live   &amp;lt;/div&amp;gt;
    &amp;lt;span &amp;gt; span is nothing ,it just line of code mean in-line , it doesnt take any space &amp;lt;/span&amp;gt;
    &amp;lt;p id="para-1"&amp;gt; we know already what is paragraph &amp;lt;/p&amp;gt;
    &amp;lt;ul&amp;gt;
        &amp;lt;li class ="bg-blue text-white" &amp;gt; AXM &amp;lt;/li&amp;gt;
        &amp;lt;li class="sibling"&amp;gt;AXM  2&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;AXM 3&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;AXM 4&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;AXM 5&amp;lt;/li&amp;gt;
    &amp;lt;/ul&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 &amp;lt;a id="para-1" href="#"&amp;gt;Test&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;higlisht me&amp;lt;/li&amp;gt;

      &amp;lt;/ul&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;section&amp;gt;
       &amp;lt;p class="sibling"&amp;gt; Test 1&amp;lt;/p&amp;gt;
       &amp;lt;p&amp;gt;Test 2&amp;lt;/p&amp;gt;
       &amp;lt;p&amp;gt;Test 3&amp;lt;/p&amp;gt;
       &amp;lt;p&amp;gt;Test 4&amp;lt;/p&amp;gt;

    &amp;lt;/section&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  universal Selector
&lt;/h2&gt;

&lt;p&gt;universal selector  denoted by * (Asterisk)&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;style&amp;gt;
* {
            background-color: #DE4839;
            color: #ffffff;
        }
&amp;lt;/style&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  individual selector
&lt;/h2&gt;

&lt;p&gt;individual Selector use tag/element of html&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;style&amp;gt;
 p{
           background-color: #686868;
           color: #ffffff;

        }
&amp;lt;/style&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  class&amp;amp;id : using class and id we target the html element using (.) and for id
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;style&amp;gt;
.div-1{
            background-color: #ef9325;
            color: azure;
        }
 /* id */
 #para-1{
            background-color: #efefef;
            color: #e93916;
        }
&amp;lt;/style&amp;gt;


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

&lt;/div&gt;



&lt;h2&gt;
  
  
  and selector
&lt;/h2&gt;

&lt;p&gt;is also know as chained selector&lt;br&gt;
it used sub class element to target&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;li.bg-blue.text-white{
        background-color: rgb(0, 22, 94);
        color: #f1f1f1;

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

&lt;/div&gt;



&lt;h2&gt;
  
  
  combined selector : we can used more than one  html tag to target the html.
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;p,span{
        background-color:  rebeccapurple;}
        /* inside element */
        div ul li {
            background-color: #000000;
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Direct child selector : child combinator (&amp;gt;) is placed between two CSS selectors
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/* direct -child seclector */
        div&amp;gt;li{
            background-color: rgb(60, 248, 60);
            color: blue;

        }


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

&lt;/div&gt;



&lt;h2&gt;
  
  
  sibiling: sibling selector is used to select an element that is directly after another specific element
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; .sibling+p{background-color: lightyellow;
            color:#686868 ;
        }
        /* sibling */
        .sibling+li{
           background-color: lightyellow;
            color:#686868 ;
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>css</category>
      <category>webdev</category>
      <category>learncodeonline</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>INTRODUCATION TO WEB AND HTML</title>
      <dc:creator>MD AZHAR MASOOD</dc:creator>
      <pubDate>Sun, 13 Nov 2022 05:27:55 +0000</pubDate>
      <link>https://dev.to/azharone/introducation-to-web-and-html-3f16</link>
      <guid>https://dev.to/azharone/introducation-to-web-and-html-3f16</guid>
      <description>&lt;p&gt;&lt;strong&gt;Web&lt;/strong&gt; is the  connection between  of billion  client and server through wire and wireless network. The web client make requests&lt;br&gt;
to web server. Let know who is client this question might be coming in your mind ?.let known client is how make request on web ,for example u have write on web a query that how to make cake this is request so u are the client and whereas who has answer your request  he/she is the replier of the answer is called server.The servers is where all the data is already feeded by someone.&lt;br&gt;
**Web Servers **is consist of both Hardware and software working together.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The Hardware used to store webserver software and website component file like html ,css ,JavaScript and etc.&lt;/li&gt;
&lt;li&gt;where as Software side, it control how server control the user to accesses  hosted file. webservers use protocol mean rule which predefined by the webservers software and most common one is Https:t he protocol your browser uses to view webpages .&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Their are two type of web serves
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;static: server hosted same file has send  as it is to your  web browsers&lt;/li&gt;
&lt;li&gt;dynamic: it update the hosted file  before sending the content to the browser
*&lt;em&gt;The Apache HTTP Server Project **is a collaborative software development effort aimed at creating a robust, commercial-grade,
free available  source code implementation of an HTTP (Web) server. In February of 1995, the most popular server software on the Web was the public domain HTTP daemon developed by Rob McCool at the National Center for Supercomputing Applications, University of Illinois, Urbana-Champaign.
**Live server *&lt;/em&gt;
In vs code live server is give local environments for website development. It behaviour like dynamic serves.
It give an idea how go website behavior like to actual server.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>tutorial</category>
      <category>webdev</category>
    </item>
    <item>
      <title>INTRODUCATION TO WEB AND HTML</title>
      <dc:creator>MD AZHAR MASOOD</dc:creator>
      <pubDate>Sun, 06 Nov 2022 05:10:33 +0000</pubDate>
      <link>https://dev.to/azharone/introducation-to-web-and-html-5faj</link>
      <guid>https://dev.to/azharone/introducation-to-web-and-html-5faj</guid>
      <description>&lt;h1&gt;
  
  
  &lt;strong&gt;Web&lt;/strong&gt;#
&lt;/h1&gt;

&lt;p&gt;is the  connection between  of billion  client and server through wire and wireless network. The web client make requests&lt;br&gt;
to web server. Let know who is client this question might be coming in your mind ?.let known client is how make request on web ,for example u have write on web a query that how to make cake this is request so u are the client and whereas who has answer your request  he/she is the replier of the answer is called server. The servers is where all the data is already feeded by someone.&lt;/p&gt;

&lt;h1&gt;
  
  
  *&lt;em&gt;Web Servers *&lt;/em&gt;#
&lt;/h1&gt;

&lt;p&gt;is consist of both Hardware and software working together.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The Hardware used to store webserver software and website component file like html ,css ,JavaScript and etc.&lt;/li&gt;
&lt;li&gt;where as Software side, it control how server control the user to accesses  hosted file. webservers use protocol mean rule which predefined by the webservers software and most common one is Https: the protocol your browser uses to view webpages .&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Their are two type of web serves#
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;static: server hosted same file has send  as it is to your  web browsers&lt;/li&gt;
&lt;li&gt;dynamic: it update the hosted file  before sending the content to the browser&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  *&lt;em&gt;The Apache HTTP Server Project *&lt;/em&gt;#
&lt;/h1&gt;

&lt;p&gt;is a collaborative software development effort aimed at creating a robust, commercial-grade,&lt;br&gt;
free available  source code implementation of an HTTP (Web) server. In February of 1995, the most popular server software on the Web was the public domain HTTP daemon developed by Rob McCool at the National Center for Supercomputing Applications, University of Illinois, Urbana-Champaign.&lt;/p&gt;

&lt;h1&gt;
  
  
  *&lt;em&gt;Live server *&lt;/em&gt;#
&lt;/h1&gt;

&lt;p&gt;In vscode live server is give local environments for website development. It behaviour like dynamic serves.&lt;br&gt;
It give an idea how go website behavior like to actual server. &lt;br&gt;
live server extension have given so many option to explorer within it .&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;strong&gt;HTML&lt;/strong&gt;#
&lt;/h1&gt;

&lt;p&gt;HTML is hyper text markup language .Basic building block of the Web. defines the meaning and structure of web content.&lt;br&gt;
html first introduces as xhtml and rewrite as html .&lt;br&gt;
every web browers have their own criteria for reddening  web pages tags .&lt;br&gt;
The first version of HTML was written by Tim Berners-Lee in 1993. &lt;br&gt;
XML is a standard markup language that is used to create other markup languages. Hundreds of XML languages are in use today, including GML (Geography Markup Language), MathML, MusicML, and RSS (Really Simple Syndication).&lt;br&gt;
1991- Tim Berners-Lee invents HTML 1.0&lt;br&gt;
1993- HTML 1.0 is released. Not many developers are creating websites at this time.&lt;br&gt;
1995- HTML 2.0 is published. This contains the features of HTML 1.0 plus new features. This remained the standard markup language for designing and creating websites until 1997.&lt;br&gt;
1997- HTML 3.0 was invented. Here, Dave Raggett introduced a fresh draft on HTML, which improved new features of HTML and gave more powerful characteristics for webmasters in designing websites. Unfortunately, the powerful features slowed down the browser in applying further improvements.&lt;br&gt;
1999- The widely-used HTML 4.0 comes out. It is very successful.&lt;br&gt;
2014- HTML 5.0 is released and used worldwide. It is said to be the extended version of HTML 4.01 which was published in 2012&lt;br&gt;
HTML have tags to describes web contents called elements&lt;br&gt;
their are some element we are going to discuss &lt;br&gt;
H1 tags -is used for give biggest heading  secation is allocated by html.These elements only include the global attributes.&lt;br&gt;
Heading information can be used by user agents to construct a table of contents for a document automatically.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;strong&gt;lorem&lt;/strong&gt;#
&lt;/h1&gt;

&lt;p&gt;Its is feature of emmet which help to generated texts is just lum sum text .&lt;br&gt;
loemun can use any of flow contents.&lt;br&gt;
we can control how many line of text we can use some of the example are given below :&lt;br&gt;
loerum20- it will generated 20 word &lt;br&gt;
loerum *20- it will gentrated 20 line of lumsum loerum.&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
