<?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: CODE ~ X</title>
    <description>The latest articles on DEV Community by CODE ~ X (@bhushcodes).</description>
    <link>https://dev.to/bhushcodes</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%2F1228373%2Fbe234e47-5c29-4346-9c69-8b5e30c2b34a.png</url>
      <title>DEV Community: CODE ~ X</title>
      <link>https://dev.to/bhushcodes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bhushcodes"/>
    <language>en</language>
    <item>
      <title>Basic HTML Tags by @bhushcodes</title>
      <dc:creator>CODE ~ X</dc:creator>
      <pubDate>Thu, 07 Dec 2023 15:42:31 +0000</pubDate>
      <link>https://dev.to/bhushcodes/basic-html-tags-by-bhushcodes-4dga</link>
      <guid>https://dev.to/bhushcodes/basic-html-tags-by-bhushcodes-4dga</guid>
      <description>&lt;h2&gt;
  
  
  Basic HTML Tags:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;html&amp;gt;&amp;lt;/html&amp;gt;&lt;/code&gt;:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Defines the root element of an HTML page. It wraps the entire content of the page.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;head&amp;gt;&amp;lt;/head&amp;gt;&lt;/code&gt;:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Contains meta-information about the document, such as the title, links to stylesheets or scripts, meta tags, etc.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;body&amp;gt;&amp;lt;/body&amp;gt;&lt;/code&gt;:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Encloses the visible content of the webpage, including text, images, links, headings, paragraphs, etc.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;&lt;/code&gt;:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Specifies the title of the webpage that appears in the browser's title bar or tab.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;h1&amp;gt;&amp;lt;/h1&amp;gt;&lt;/code&gt; to &lt;code&gt;&amp;lt;h6&amp;gt;&amp;lt;/h6&amp;gt;&lt;/code&gt; (&lt;em&gt;Heading Tags&lt;/em&gt;):&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; to &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; are used for headings, where &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; &lt;br&gt;
represents the highest level of heading and &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; the lowest level.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;/code&gt; (&lt;em&gt;Paragraph Tag&lt;/em&gt;):&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Defines a paragraph. Text enclosed within &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; tags is displayed as a separate paragraph.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;a&amp;gt;&amp;lt;/a&amp;gt;&lt;/code&gt; (&lt;em&gt;Anchor Tag&lt;/em&gt;):&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Creates hyperlinks to other web pages or resources. The href attribute specifies the destination of the link.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt; (&lt;em&gt;Image Tag&lt;/em&gt;):&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Embeds an image into the webpage. It requires the src attribute to specify the image file's URL and may contain an alt attribute for accessibility.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;ul&amp;gt;&amp;lt;/ul&amp;gt;&lt;/code&gt; (&lt;em&gt;Unordered List Tag&lt;/em&gt;):&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Defines an unordered list, which is a list of items without any particular order. Uses &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; (&lt;em&gt;List Item&lt;/em&gt;) tags to define each item.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;ol&amp;gt;&amp;lt;/ol&amp;gt;&lt;/code&gt; (&lt;em&gt;Ordered List Tag&lt;/em&gt;):&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Defines an ordered list, which is a list of items in a specific order (&lt;em&gt;usually numbered&lt;/em&gt;). Also uses &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; tags for list items.&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;!--@bhushcodes--&amp;gt;

&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;title&amp;gt;Basic HTML Tags&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;h1&amp;gt;Main Heading&amp;lt;/h1&amp;gt;
  &amp;lt;p&amp;gt;This is a paragraph of text.&amp;lt;/p&amp;gt;
  &amp;lt;a href="https://www.x.com/bhushcodes"&amp;gt;Link to Twitter&amp;lt;/a&amp;gt;
  &amp;lt;img src="image.jpg" alt="Description of Image"&amp;gt;

  &amp;lt;h2&amp;gt;Subheading&amp;lt;/h2&amp;gt;
  &amp;lt;ul&amp;gt;
    &amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;Item 3&amp;lt;/li&amp;gt;
  &amp;lt;/ul&amp;gt;

  &amp;lt;h3&amp;gt;Another Subheading&amp;lt;/h3&amp;gt;
  &amp;lt;ol&amp;gt;
    &amp;lt;li&amp;gt;First item&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;Second item&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;Third item&amp;lt;/li&amp;gt;
  &amp;lt;/ol&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This example demonstrates the use of several basic HTML tags to structure content, create &lt;strong&gt;headings&lt;/strong&gt;, &lt;strong&gt;paragraphs&lt;/strong&gt;, &lt;strong&gt;links&lt;/strong&gt;, &lt;strong&gt;images&lt;/strong&gt;, and &lt;strong&gt;lists&lt;/strong&gt;. Understanding and utilizing these tags effectively forms the foundation of creating simple yet structured web pages.&lt;/p&gt;

&lt;p&gt;Follow for more 😊 👉🏼 &lt;a href="https://twitter.com/bhushcodes"&gt;@bhushcodes&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
    </item>
    <item>
      <title>Introduction to HTML by @bhushcodes</title>
      <dc:creator>CODE ~ X</dc:creator>
      <pubDate>Thu, 07 Dec 2023 15:26:47 +0000</pubDate>
      <link>https://dev.to/bhushcodes/introduction-to-html-by-bhushcodes-2jd8</link>
      <guid>https://dev.to/bhushcodes/introduction-to-html-by-bhushcodes-2jd8</guid>
      <description>&lt;h2&gt;
  
  
  What is HTML?
&lt;/h2&gt;

&lt;p&gt;HTML stands for HyperText Markup Language. It's the standard markup language used to create web pages. HTML describes the structure of a web page and its content, using a markup, or tag-based, system to define various elements and their relationships on a webpage.&lt;/p&gt;

&lt;h2&gt;
  
  
  Role of HTML in Web Development:
&lt;/h2&gt;

&lt;p&gt;HTML is the backbone of web development. It provides the basic structure for content on a web page. It defines elements such as headings, paragraphs, links, images, lists, and more. When a web browser loads a webpage, it reads the HTML to render and display the content correctly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Structure of HTML Documents:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;HTML documents have a specific structure:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Document Type Declaration&lt;/em&gt; (&lt;code&gt;&amp;lt;!DOCTYPE&amp;gt;&lt;/code&gt;): It specifies the HTML version being used. For HTML5, the declaration is &lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;HTML Element&lt;/em&gt; (&lt;code&gt;&amp;lt;html&amp;gt;&amp;lt;/html&amp;gt;&lt;/code&gt;): The root element that wraps the entire content on a web page.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Head Section&lt;/em&gt; (&lt;code&gt;&amp;lt;head&amp;gt;&amp;lt;/head&amp;gt;&lt;/code&gt;): This section contains meta-information about the document, including the title, character set, linking to CSS or JavaScript files, etc.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Body Section&lt;/em&gt; (&lt;code&gt;&amp;lt;body&amp;gt;&amp;lt;/body&amp;gt;&lt;/code&gt;): This section contains the visible content of the webpage, such as text, images, links, and other elements.&lt;/p&gt;

&lt;h2&gt;
  
  
  Elements and Tags:
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Elements:&lt;/strong&gt; In HTML, elements are building blocks that define the structure of a webpage. Each element is enclosed within an opening tag (&lt;code&gt;&amp;lt;tag&amp;gt;&lt;/code&gt;) and a closing tag (&lt;code&gt;&amp;lt;/tag&amp;gt;&lt;/code&gt;). Elements can contain other elements, forming a hierarchical structure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; Tags are used to mark the beginning and end of HTML elements. They are made up of angle brackets, with the opening tag containing the element name and the closing tag preceded by a forward slash.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Example of a simple HTML document structure:&lt;/em&gt;&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;!--@bhushcodes--&amp;gt;
&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;title&amp;gt;My First Web Page&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;h1&amp;gt;Welcome to My Page&amp;lt;/h1&amp;gt;
  &amp;lt;p&amp;gt;This is a paragraph of text.&amp;lt;/p&amp;gt;
  &amp;lt;img src="image.jpg" alt="Description of Image"&amp;gt;
  &amp;lt;a href="https://www.x.com/bhushcodes/"&amp;gt;Link to Twitter&amp;lt;/a&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;em&gt;In this example:&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt; declares the HTML5 document type.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; wraps the entire content.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; contains the title of the page.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt;contains the visible content like heading (&lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;), paragraph (&lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;), image (&lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt;), and link (&lt;code&gt;&amp;lt;a&amp;gt;&lt;/code&gt;).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Understanding these basic concepts of HTML is crucial for building web pages. It's the foundation upon which more advanced web development techniques are built.&lt;/p&gt;

&lt;p&gt;Follow for more 😊 👉🏼 &lt;a href="https://twitter.com/bhushcodes"&gt;@bhushcodes&lt;/a&gt;&lt;/p&gt;

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