<?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: antony juma</title>
    <description>The latest articles on DEV Community by antony juma (@its_kaysir).</description>
    <link>https://dev.to/its_kaysir</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%2F3997088%2Fba247266-d61d-45e3-8da5-eaf194f23a00.jpg</url>
      <title>DEV Community: antony juma</title>
      <link>https://dev.to/its_kaysir</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/its_kaysir"/>
    <language>en</language>
    <item>
      <title>Building a Better Web</title>
      <dc:creator>antony juma</dc:creator>
      <pubDate>Mon, 22 Jun 2026 15:00:11 +0000</pubDate>
      <link>https://dev.to/its_kaysir/building-a-better-web-4fh5</link>
      <guid>https://dev.to/its_kaysir/building-a-better-web-4fh5</guid>
      <description>&lt;h2&gt;
  
  
  Semantic HTML
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;When learning web development, it is easy to fall into the habit of building everything with  and &lt;span&gt; tags. They are highly flexible, but they suffer from a major flaw: they carry absolutely no meaning. To build a modern, accessible web, we need to shift our focus toward &lt;strong&gt;Semantic HTML&lt;/strong&gt;.&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;Semantic HTML means using tags that describe the meaning of the content they enclose, rather than just how it looks. When we use elements like ,  and , we provide structural context that benefits both machines and humans.
## Why it matters:&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Accessibility:&lt;/strong&gt; Screen readers use semantic tags to navigate pages efficiently.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SEO:&lt;/strong&gt; Search engines prioritize well structured semantic content.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Maintainability:&lt;/strong&gt; It makes code easier for other developers to read and understand.
&amp;gt;Non-semantic
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"button"&lt;/span&gt; &lt;span class="na"&gt;onclick=&lt;/span&gt;&lt;span class="s"&gt;"submitForm()"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
Click me
&lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;Semantic&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;button&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"button"&lt;/span&gt; &lt;span class="na"&gt;onclick=&lt;/span&gt;&lt;span class="s"&gt;"submitForm()"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
Click Me
&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Accessibility Audit: Key Fixes
&lt;/h2&gt;

&lt;p&gt;In my audit of index.html, I identified and resolved the following issues:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Missing Image Alt Texts:&lt;/strong&gt; My image lacked &lt;strong&gt;alt&lt;/strong&gt; attributes, leaving screen reader users without context. I added descriptive text to the image.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Heading Hierarchy:&lt;/strong&gt; I found skipped heading levels. I restructured the document to follow a logical h1-h3 flow.
## Conclusion
Prioritizing accessibility isn't just a nice feature but a fundamental part of responsible web development. By using semantic elements, we create a more inclusive digital world. 
You can view my full project in action here [&lt;a href="https://github.com/itskaysir/iyf-s11-week-01-itskaysir" rel="noopener noreferrer"&gt;https://github.com/itskaysir/iyf-s11-week-01-itskaysir&lt;/a&gt;] &lt;/li&gt;
&lt;/ol&gt;

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