<?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: Sehbaj Cuber</title>
    <description>The latest articles on DEV Community by Sehbaj Cuber (@sehbaj_cuber_77f9bea7eaf1).</description>
    <link>https://dev.to/sehbaj_cuber_77f9bea7eaf1</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%2F3743932%2F91e3e1e0-bcc0-41c6-ab66-2ecf51441292.jpg</url>
      <title>DEV Community: Sehbaj Cuber</title>
      <link>https://dev.to/sehbaj_cuber_77f9bea7eaf1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sehbaj_cuber_77f9bea7eaf1"/>
    <language>en</language>
    <item>
      <title>HTML Basics for Beginners: Start Building Web Pages Today</title>
      <dc:creator>Sehbaj Cuber</dc:creator>
      <pubDate>Sat, 31 Jan 2026 13:53:10 +0000</pubDate>
      <link>https://dev.to/sehbaj_cuber_77f9bea7eaf1/html-basics-for-beginners-start-building-web-pages-today-1m76</link>
      <guid>https://dev.to/sehbaj_cuber_77f9bea7eaf1/html-basics-for-beginners-start-building-web-pages-today-1m76</guid>
      <description>&lt;p&gt;🔹 What is HTML?&lt;/p&gt;

&lt;p&gt;HTML stands for HyperText Markup Language.&lt;br&gt;
It is used to create the structure of web pages.&lt;/p&gt;

&lt;p&gt;HTML tells the browser:&lt;/p&gt;

&lt;p&gt;what is a heading&lt;/p&gt;

&lt;p&gt;what is a paragraph&lt;/p&gt;

&lt;p&gt;what is a link or image&lt;/p&gt;

&lt;p&gt;🔹 Basic HTML Structure&lt;/p&gt;

&lt;p&gt;Every HTML page starts with this structure:&lt;/p&gt;

&lt;p&gt;html :&lt;/p&gt;

&lt;p&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;br&gt;
&lt;br&gt;
  &lt;/p&gt;
&lt;br&gt;
    My First Website&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
    &lt;h1&gt;Hello World&lt;/h1&gt;
&lt;br&gt;
    &lt;p&gt;This is my first web page.&lt;/p&gt;
&lt;br&gt;
  &lt;br&gt;


&lt;p&gt;Explanation:&lt;/p&gt;

&lt;p&gt; → starts the page&lt;/p&gt;

 → page info (title, meta)

 → content shown on the page

&lt;p&gt;🔹 Common HTML Tags Beginners Must Know&lt;/p&gt;

&lt;p&gt;Heading:&lt;/p&gt;

&lt;h1&gt;This is a heading&lt;/h1&gt;

&lt;p&gt;Paragraph:&lt;/p&gt;

&lt;p&gt;This is a paragraph&lt;/p&gt;

&lt;p&gt;Link:&lt;br&gt;
&lt;a href="https://example.com" rel="noopener noreferrer"&gt;Visit Website&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Image:&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/image.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/image.jpg" alt="Image description" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🔹 Common Beginner Mistake ❌&lt;/p&gt;

&lt;p&gt;Many beginners forget to close tags, which breaks the page.&lt;/p&gt;

&lt;p&gt;Example (wrong):&lt;/p&gt;

&lt;p&gt;Hello World


Correct:

&lt;/p&gt;
&lt;p&gt;Hello World&lt;/p&gt;

&lt;p&gt;✅ Final Tip&lt;/p&gt;

&lt;p&gt;Don’t try to learn everything at once.&lt;br&gt;
Practice small examples and build slowly.&lt;/p&gt;

&lt;p&gt;🔗 Want the full step-by-step guide?&lt;/p&gt;

&lt;p&gt;I wrote a detailed beginner tutorial with more examples on my blog (free):&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://devcoding13.blogspot.com/" rel="noopener noreferrer"&gt;https://devcoding13.blogspot.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Originally published on my personal blog.&lt;/p&gt;

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