Journey into Web Development

Author: Lenso B | Date: 9th February 2026 | HTML Learning Blog

Introduction

Web development may look complex at first, but in reality it starts with very simple steps. When I first heard about coding, I honestly thought, Only very intelligent people can do this. But that belief was completely wrong.

My teacher once said, “If you can read and write, you can code.” That single sentence changed my mindset. I realized that learning HTML is not about memorizing, but about understanding structure.

“Every expert was once a beginner. The difference is that experts didn’t quit.”

What is HTML?

HTML stands for HyperText Markup Language. It is used to structure content on the web. For example, a paragraph is written using <p> and headings are written using <h1> to <h6>.

I was surprised to learn that HTML itself does not add any colors or styles to the page. It only defines the structure and meaning of the content. The visual design is handled by another language called CSS. HTML does not add colors or animations. That job is done by CSS. HTML only focuses on content and meaning.

Basic Things I Learned First

HTML Text Formatting

1st Paragraph: HTML allows us to make text look bold, italic, and underlined. We can also highlight important words and show corrections like Wrong Word and Correct Word.

2nd Paragraph: You can write chemical formulas like H2O and mathematical powers such as X 2. Also, HTML supports small text for footnotes or disclaimers .

This text is inside a preformatted tag.
It keeps formatting like 
        spaces,             tab,
           and line brakes,
    function testFunction(strText)
        {
             alert(strText);
        } 

Daily Learning Routine

Learning without discipline never works. So I followed a very simple routine every day:

  1. Read one topic carefully
  2. Write the code by hand
  3. Test it in the browser
  4. Fix mistakes without fear

Whenever I made errors, I remembered this line: Mistakes are proof that you are trying.

Motivation That Kept Me Going

Motivation Image

On difficult days, I reminded myself: Don’t stop when you’re tired. Stop when you’re done.

Sometimes I felt like giving up, but then I realized that giving up is replaced by growing stronger when you stay consistent.

Weekly Study Plan

Weekly Study Plan
Day Topic Practice Hours Notes
Monday HTML Basics 2 Tags & Structure
Wednesday Lists & Tables 2 Layout Practice
Friday Mini Project 1 Confidence Boost

Important Lessons

These are some life lessons that coding taught me:

Today, when I look back, I can proudly say: HTML no longer scares me.