Lesson 1: What is HTML? (The Skeleton of the Web)

<!DOCTYPE html>
<html>
<head>
    <title>My First Page | Coding Learners</title>
</head>
<body>
    <h1>Hello World!</h1>
    <p>I am officially a Coding Learner.</p>
</body>
</html>

  • It’s the foundation: You cannot learn CSS, JavaScript, or PHP effectively without a solid grasp of HTML.

  • SEO (Search Engine Optimization): Google “reads” your HTML tags to decide how to rank your website. Good HTML = Better traffic for your site!
  • It’s Easy: You can see results instantly. Just save a file and open it in your browser.

1. Open a simple text editor (like Visual Studio Code, Notepad , Sublime Text or TextEdit).

        3. Save the file as index.html.

          4. Open that file with your web browser.

            You just created your first website!

            You may also like...

            1 Response

            1. March 22, 2026

              […] Previous Next […]

            Leave a Reply

            Your email address will not be published. Required fields are marked *