<?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: Abdul moiz</title>
    <description>The latest articles on DEV Community by Abdul moiz (@abdulmoiz8994).</description>
    <link>https://dev.to/abdulmoiz8994</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F642588%2F6c41fc2a-0a9d-48e1-828e-5c0fa54e0faf.jpeg</url>
      <title>DEV Community: Abdul moiz</title>
      <link>https://dev.to/abdulmoiz8994</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abdulmoiz8994"/>
    <language>en</language>
    <item>
      <title>Learn Simple HTML5 Basic Elements(Second Article)!!</title>
      <dc:creator>Abdul moiz</dc:creator>
      <pubDate>Mon, 18 Oct 2021 08:20:17 +0000</pubDate>
      <link>https://dev.to/abdulmoiz8994/learn-simple-html5-basic-elementssecond-article-4i9p</link>
      <guid>https://dev.to/abdulmoiz8994/learn-simple-html5-basic-elementssecond-article-4i9p</guid>
      <description>&lt;h3&gt;
  
  
  Block-Level And Inline Elements
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;In HTML , there are two kinds of elements one is block-level and other one is in-line elements.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Block Element.
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;These are those elements, which starts with new line and takes the full width of the screen horizontally and vertical space is its height of that content.Example &lt;code&gt;div&lt;/code&gt;,&lt;code&gt;form&lt;/code&gt;,&lt;code&gt;,&lt;/code&gt;UL&lt;code&gt;,&lt;/code&gt;ol&lt;code&gt;,&lt;/code&gt;Li&lt;code&gt;,&lt;/code&gt;section&lt;code&gt;,&lt;/code&gt;table` and etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  In Line-level Elements.
&lt;/h4&gt;

&lt;p&gt;The Inline elements are those which do not start from new and take the space as necessary. Exmaple &lt;code&gt;span&lt;/code&gt;, &lt;code&gt;a  href=""&lt;/code&gt;, &lt;code&gt;textarea&lt;/code&gt;,&lt;code&gt;br&lt;/code&gt;, &lt;code&gt;em&lt;/code&gt;,&lt;code&gt;iframe&lt;/code&gt; and etc.&lt;/p&gt;

&lt;h4&gt;
  
  
  Remaining Part I will add in few hours
&lt;/h4&gt;

</description>
    </item>
    <item>
      <title>Learn Simple HTML5(First Article), Beginner level </title>
      <dc:creator>Abdul moiz</dc:creator>
      <pubDate>Sun, 17 Oct 2021 04:59:40 +0000</pubDate>
      <link>https://dev.to/abdulmoiz8994/learn-simple-htmlfirst-article-beginner-level-1i37</link>
      <guid>https://dev.to/abdulmoiz8994/learn-simple-htmlfirst-article-beginner-level-1i37</guid>
      <description>&lt;h2&gt;
  
  
  What is an HTML?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;HTML (Hyper Text MarkUp language), which we use to define the basic structure of the web pages. Like The contents where we have some paragraphs, bullets points, data table forms, images,videos and map etc.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The HTML Tags Contains machine-readable information about the metadata of the Document, like title, script, style, etc.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  what is MetaData?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;The simplest Definition is that the data describes the data is called metadata.Like the tag of   element also contain metadata in its  head tag which also describes the data like style title, the script is metadata of HTML&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  what head tag holds between the opening and Closing Tag?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;I will also cover, about opening and closing tags below in the document.The Head tag holds the Information about the  machine-understandable data, not for human-readable,but for humans html provides use some tags which we use in browser tab and provide some extra information about the website as well.
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What is an Element?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;I will to explain about the element through an example?
&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;p&amp;gt;This is a content &amp;lt;/p&amp;gt;
This is an complete Example of an Element
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;There are some pre-defined key words in HTML such as

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

which tells us about the Paragraph ,same like &lt;code&gt;h1&lt;/code&gt; which represents heading.There are many other pre-defined key words as well. I will provide the link to learn more about the element and tags name at the end of this article.&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;We have Two opening angle brackets &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;In between of tags we have the content .

&lt;code&gt;This is an Enclosed text content &amp;lt;p&amp;gt; This is an content&amp;lt;/p&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;we can write whatever we want in between of opening &amp;amp; close brackets.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The two closing angle Brackets  and slash

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

.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Attribute
&lt;/h3&gt;

&lt;p&gt;-The element can contain an attribute where we store extra information about the element which does not appear on the web page, we use attributes for different reasons just like, the class for styling, id attribute, &lt;code&gt;&amp;lt;p class="para"&amp;gt;moiz &amp;lt;/p&amp;gt;&lt;/code&gt;, this is an attribute.&lt;/p&gt;

&lt;h3&gt;
  
  
  Nested Elements
&lt;/h3&gt;

&lt;p&gt;-In HTML we have nested elements as well, we can make the elements and we can make another elements inside  of it, &lt;code&gt;&amp;lt;p&amp;gt;Moiz JS&amp;lt;strong&amp;gt;Dev&amp;lt;/strong&amp;gt; &amp;lt;p&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;h6&gt;
  
  
  Important Note:
&lt;/h6&gt;

&lt;p&gt;-we need to remember that, when we make the nested element and after the opening tag then we must make the closing tag before the parent Closing tag.&lt;/p&gt;

&lt;h3&gt;
  
  
  Empty Elements
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Empty Elements are those elements are those elements which are not contain any content &lt;code&gt;&amp;lt;img/&amp;gt;&lt;/code&gt;  , but this tag accepts and we also called the self-closing tag &lt;code&gt;&amp;lt;img src="Path of Image" alt="Meaning full Message"/&amp;gt;&lt;/code&gt; &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Link of Elements:&lt;code&gt;https://developer.mozilla.org/en-US/docs/Web/HTML/Element&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;br&gt;
If Someone see some wrong thing which should be correct then feel free to contact me on LinkedIn or twitter&lt;br&gt;
LinkedIn:  &lt;code&gt;https://www.linkedin.com/in/abdul-moiz-8b84361b2/&lt;/code&gt;&lt;br&gt;
 Twitter: &lt;code&gt;https://twitter.com/Abdulmoiz8994&lt;/code&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
