<?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: iamimani</title>
    <description>The latest articles on DEV Community by iamimani (@iamimani).</description>
    <link>https://dev.to/iamimani</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%2F3473795%2Fc9a18146-fadf-40aa-a9ba-8de6030633b1.png</url>
      <title>DEV Community: iamimani</title>
      <link>https://dev.to/iamimani</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamimani"/>
    <language>en</language>
    <item>
      <title>USE OF SEMANTIC HTML</title>
      <dc:creator>iamimani</dc:creator>
      <pubDate>Mon, 01 Sep 2025 16:55:05 +0000</pubDate>
      <link>https://dev.to/iamimani/use-of-semantic-html-1lm</link>
      <guid>https://dev.to/iamimani/use-of-semantic-html-1lm</guid>
      <description>&lt;p&gt;How to Implement Semantic HTML&lt;br&gt;
SEMANTIC HTML &lt;br&gt;
Think of HTML as the basic structure of your website. Non-semantic tags like &lt;/p&gt; and &lt;span&gt; are basically bones without labels—they hold things together but don’t explain what they are.&lt;br&gt;
Semantic tags, on the other hand, are like labeled bones. They tell browsers, screen readers, and search engines what role that part of the page plays.&lt;br&gt;
For example:&lt;br&gt;
No semantic HTML 



&lt;p&gt;Semantic HTML&lt;/p&gt;



&lt;p&gt;Using semantic HTML is important in ways like:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Accessibility → Screen readers can navigate your site better. That means users with disabilities aren’t left behind.&lt;/li&gt;
&lt;li&gt;SEO → Search engines require structured pages.&lt;/li&gt;
&lt;li&gt;Maintainability →  Another developer can open it months later and instantly understand what’s going on.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Key Tags one Should Know&lt;/p&gt;

&lt;p&gt;Here are some of the most useful semantic elements:&lt;/p&gt;

 → The top section (logo)

 →links that help with navigation

 → The primary content of your page (the “meat”)

 →related content

 → Self-contained pieces,

 → Side notes

 → The bottom section (copyright)

Here’s how you might structure a simple HTML code


  
    &lt;h1&gt;My Technical Blog&lt;/h1&gt;
    
      &lt;ul&gt;
        &lt;li&gt;&lt;a href="/"&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="/articles"&gt;Articles&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="/contact"&gt;Contact&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    
  


&lt;h2&gt;Implementing Semantic HTML&lt;/h2&gt;
&lt;br&gt;
        &lt;p&gt;By Jane Doe – September 1, 2025&lt;/p&gt;
&lt;br&gt;
      &lt;br&gt;
      &lt;p&gt;Semantic HTML improves accessibility and SEO...&lt;/p&gt;
&lt;br&gt;
    &lt;br&gt;
  


    &lt;h3&gt;Related Posts&lt;/h3&gt;
    &lt;ul&gt;
      &lt;li&gt;Accessibility Basics&lt;/li&gt;
      &lt;li&gt;&lt;a href=""&gt;Features You Should Use&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  


&lt;p&gt; My Technical Blog&lt;/p&gt;
&lt;br&gt;
  &lt;br&gt;


&lt;p&gt;Tips for Writing  HTML&lt;/p&gt;

&lt;p&gt;Use headings properly → &lt;/p&gt;


&lt;h1&gt; for the main title, &lt;h2&gt; for subsections, and so on. Don’t skip levels.&lt;br&gt;&lt;br&gt;
Don’t overuse s → Replace them with semantic tags where possible.&lt;br&gt;&lt;br&gt;
Keep it logical → Imagine your HTML as an outline. If it makes sense when read aloud, you’re doing it right.

&lt;/h2&gt;
&lt;/h1&gt;
&lt;p&gt;Conclusion&lt;br&gt;
Semantic HTML is about writing meaningful code. It makes your site more accessible, search-friendly, and future-proof. &lt;/p&gt;

&lt;/span&gt;

</description>
    </item>
    <item>
      <title>IMPLEMENTING SEMANTIC HTML</title>
      <dc:creator>iamimani</dc:creator>
      <pubDate>Mon, 01 Sep 2025 16:52:49 +0000</pubDate>
      <link>https://dev.to/iamimani/implementing-semantic-html-1m8o</link>
      <guid>https://dev.to/iamimani/implementing-semantic-html-1m8o</guid>
      <description>&lt;p&gt;How to Implement Semantic HTML&lt;br&gt;
SEMANTIC HTML &lt;br&gt;
Think of HTML as the basic structure of your website. Non-semantic tags like &lt;/p&gt; and &lt;span&gt; are basically bones without labels—they hold things together but don’t explain what they are.&lt;br&gt;
Semantic tags, on the other hand, are like labeled bones. They tell browsers, screen readers, and search engines what role that part of the page plays.&lt;br&gt;
For example:&lt;br&gt;
No semantic HTML 



&lt;p&gt;Semantic HTML&lt;/p&gt;



&lt;p&gt;Using semantic HTML is important in ways like:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Accessibility → Screen readers can navigate your site better. That means users with disabilities aren’t left behind.&lt;/li&gt;
&lt;li&gt;SEO → Search engines require structured pages.&lt;/li&gt;
&lt;li&gt;Maintainability →  Another developer can open it months later and instantly understand what’s going on.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Key Tags one Should Know&lt;/p&gt;

&lt;p&gt;Here are some of the most useful semantic elements:&lt;/p&gt;

 → The top section (logo)

 →links that help with navigation

 → The primary content of your page (the “meat”)

 →related content

 → Self-contained pieces,

 → Side notes

 → The bottom section (copyright)

Here’s how you might structure a simple HTML code


  
    &lt;h1&gt;My Technical Blog&lt;/h1&gt;
    
      &lt;ul&gt;
        &lt;li&gt;&lt;a href="/"&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="/articles"&gt;Articles&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="/contact"&gt;Contact&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    
  


&lt;h2&gt;Implementing Semantic HTML&lt;/h2&gt;
&lt;br&gt;
        &lt;p&gt;By Jane Doe – September 1, 2025&lt;/p&gt;
&lt;br&gt;
      &lt;br&gt;
      &lt;p&gt;Semantic HTML improves accessibility and SEO...&lt;/p&gt;
&lt;br&gt;
    &lt;br&gt;
  


    &lt;h3&gt;Related Posts&lt;/h3&gt;
    &lt;ul&gt;
      &lt;li&gt;Accessibility Basics&lt;/li&gt;
      &lt;li&gt;&lt;a href=""&gt;Features You Should Use&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  


&lt;p&gt; My Technical Blog&lt;/p&gt;
&lt;br&gt;
  &lt;br&gt;


&lt;p&gt;Tips for Writing  HTML&lt;/p&gt;

&lt;p&gt;Use headings properly → &lt;/p&gt;


&lt;h1&gt; for the main title, &lt;h2&gt; for subsections, and so on. Don’t skip levels.&lt;br&gt;&lt;br&gt;
Don’t overuse s → Replace them with semantic tags where possible.&lt;br&gt;&lt;br&gt;
Keep it logical → Imagine your HTML as an outline. If it makes sense when read aloud, you’re doing it right.

&lt;/h2&gt;
&lt;/h1&gt;
&lt;p&gt;Conclusion&lt;br&gt;
Semantic HTML is about writing meaningful code. It makes your site more accessible, search-friendly, and future-proof. &lt;/p&gt;

&lt;/span&gt;

</description>
    </item>
  </channel>
</rss>
