<?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: Ali Hamza</title>
    <description>The latest articles on DEV Community by Ali Hamza (@ali_hamza_589ec7b3eb6688d).</description>
    <link>https://dev.to/ali_hamza_589ec7b3eb6688d</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%2F3939488%2Fffc69754-c900-4599-b972-2a8d900525dd.png</url>
      <title>DEV Community: Ali Hamza</title>
      <link>https://dev.to/ali_hamza_589ec7b3eb6688d</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ali_hamza_589ec7b3eb6688d"/>
    <language>en</language>
    <item>
      <title>#html #beginners #codenewbie #webdev</title>
      <dc:creator>Ali Hamza</dc:creator>
      <pubDate>Tue, 19 May 2026 06:46:36 +0000</pubDate>
      <link>https://dev.to/ali_hamza_589ec7b3eb6688d/html-beginners-codenewbie-webdev-2i96</link>
      <guid>https://dev.to/ali_hamza_589ec7b3eb6688d/html-beginners-codenewbie-webdev-2i96</guid>
      <description>&lt;p&gt;Hello Dev Community! 👋&lt;/p&gt;

&lt;p&gt;Today marks the official &lt;strong&gt;Day 1&lt;/strong&gt; of my web development journey. I have decided to learn the MERN stack, and naturally, I am starting from the absolute foundation: &lt;strong&gt;HTML (HyperText Markup Language)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I believe the best way to retain what I learn is to write about it and share it with the community. So, here is a quick breakdown of what I managed to build and understand today.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 What I Learned Today
&lt;/h2&gt;

&lt;p&gt;Before writing code, I learned that HTML isn't a programming language—it's a markup language that acts as the skeleton or structure of any website. &lt;/p&gt;

&lt;p&gt;Here are the core concepts I mastered today:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. The Essential Tags
&lt;/h3&gt;

&lt;p&gt;I learned that HTML uses tags enclosed in angle brackets (&lt;code&gt;&amp;lt;&amp;gt;&lt;/code&gt;), and most of them come in pairs (an opening tag and a closing tag).&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; to &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt;: Headings (where &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; is the biggest and most important).&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;: Paragraphs for adding regular text.&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;&amp;lt;a&amp;gt;&lt;/code&gt;: Anchor tags for adding links to other websites.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. The Boilerplate Structure
&lt;/h3&gt;

&lt;p&gt;Every HTML document needs a specific structural setup to tell the browser how to read it. I learned how to set up the basic skeleton:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
html
&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;title&amp;gt;My First Webpage&amp;lt;/title&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 officially my first day learning HTML.&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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