The HTML Elements You’re (Probably) Misusing – And How to Fix It

Most developers start with and and never look back. Need a button? Wrap it in a and slap an onclick. Need a section? Throw in a . Sound familiar? The problem? HTML is not just for styling. It has meaning, and using the right elements improves accessibility, SEO, and maintainability. Plus, it makes your code cleaner. So let’s fix these common HTML mistakes once and for all. 1. and and – Know the Difference Every HTML guide says: “Use semantic elements.” But what does that actually mean? When to use : Use when there’s no meaningful alternative. It’s a generic container, nothing more. Card content This is fine when grouping things purely for styling. But if you’re marking up content, or is probably what you need. When to use : Use for logical groupings of content that share a common theme. Latest News Some important update... If there’s a heading inside, that’s a strong sign you should be using instead of . When to use : Use when the content could stand alone (blog posts, news articles, forum posts,...). How JavaScript Changed My Life Long story... TL;DR: Use for styling, for grouping related content, for standalone pieces. 2. vs. – Stop Faking Buttons Using as a button is a crime against accessibility. Here’s what people do: Click me Looks fine, right? Wrong. It’s missing: Keyboard support (try tabbing to it, you can’t!) Proper semantics (screen readers won’t recognize it as a button) Built-in features like disabled and form submission The right way: Click me That’s it. It works out of the box, is accessible, and requires zero extra JavaScript hacks. 3. Without – A Useless Tag A is not just a wrapper. It connects to an input to improve usability. Bad: Username: Good: Username: Even better? Wrap the input inside the label. No for attribute needed: Username: Now clicking the label focuses the input, which is how forms are supposed to work. 4. vs. – Not the Same Thing They both make text bold, but they aren’t interchangeable. is just visual bold text. No extra meaning. means important text, which screen readers emphasize. Example: This is a bold word. This is a very important warning. If it’s just for looks, use CSS. If it conveys importance, use . 5. and – The Forgotten Image Tags Ever seen an image with a caption? That’s where comes in. What most people do: A cute cat sitting on a laptop. The better way: A cute cat sitting on a laptop. Now the image and caption are linked together, making it clearer for both users and search engines. Final Thoughts HTML isn’t just about divs and spans. Using the right elements: Makes your code easier to read Improves accessibility Helps SEO Saves you from reinventing the wheel So next time you reach for a , ask yourself: Is there a better tag for this? Let me know in the comments—what’s an HTML mistake you see all the time? I share more content on Better Code, Better Web and Digital Minds, check them out!

Feb 20, 2025 - 15:03
 0
The HTML Elements You’re (Probably) Misusing – And How to Fix It

Most developers start with

and and never look back.

Need a button? Wrap it in a

and slap an onclick.

Need a section? Throw in a

.

Sound familiar?

The problem? HTML is not just for styling.

It has meaning, and using the right elements improves accessibility, SEO, and maintainability. Plus, it makes your code cleaner.

So let’s fix these common HTML mistakes once and for all.

1.
and
and
– Know the Difference

Every HTML guide says: “Use semantic elements.”

But what does that actually mean?

When to use
:

Use

when there’s no meaningful alternative.

It’s a generic container, nothing more.

 class="wrapper">
   class="card">Card content

This is fine when grouping things purely for styling. But if you’re marking up content,

or
is probably what you need.

When to use
:

Use

for logical groupings of content that share a common theme.

Latest News

Some important update...

If there’s a heading inside, that’s a strong sign you should be using

instead of
.

When to use
:

Use

when the content could stand alone (blog posts, news articles, forum posts,...).

How JavaScript Changed My Life

Long story...

TL;DR: Use

for styling,
for grouping related content,
for standalone pieces.

2.

Using

as a button is a crime against accessibility.

Here’s what people do:

 class="button" onclick="doSomething()">Click me

Looks fine, right? Wrong.

It’s missing:

  • Keyboard support (try tabbing to it, you can’t!)
  • Proper semantics (screen readers won’t recognize it as a button)
  • Built-in features like disabled and form submission

The right way:

 onclick="doSomething()">Click me

That’s it.

It works out of the box, is accessible, and requires zero extra JavaScript hacks.

3. Without – A Useless Tag

A is not just a wrapper.

It connects to an input to improve usability.

Bad:

Username:
 type="text" name="username">

Good:

 for="username">Username:
 type="text" id="username" name="username">

Even better? Wrap the input inside the label.

No for attribute needed:


  Username:
   type="text" name="username">

Now clicking the label focuses the input, which is how forms are supposed to work.

4. vs. – Not the Same Thing

They both make text bold, but they aren’t interchangeable.

  • is just visual bold text. No extra meaning.
  • means important text, which screen readers emphasize.

Example:

This is a bold word.

This is a very important warning.

If it’s just for looks, use CSS.

If it conveys importance, use .

5.
and
– The Forgotten Image Tags

Ever seen an image with a caption? That’s where

comes in.

What most people do:

 src="cat.jpg" alt="A cute cat">

A cute cat sitting on a laptop.

The better way:

src="cat.jpg" alt="A cute cat">
A cute cat sitting on a laptop.

Now the image and caption are linked together, making it clearer for both users and search engines.

Final Thoughts

HTML isn’t just about divs and spans.

Using the right elements:

  • Makes your code easier to read

  • Improves accessibility

  • Helps SEO

  • Saves you from reinventing the wheel

So next time you reach for a

, ask yourself: Is there a better tag for this?

Let me know in the comments—what’s an HTML mistake you see all the time?

I share more content on Better Code, Better Web and Digital Minds, check them out!