Lesson 3: Text Basics (Headings and Paragraphs)

<h1>The Ultimate Guide to PHP</h1>
<h2>Chapter 1: Getting Started</h2>
<h3>Installation</h3>
<h4>Setting up XAMPP</h4>

<p>Welcome to Coding Learners! This is a paragraph of text where we explain how the web works.</p>
<p>Every time you start a new paragraph tag, the text will start on a fresh line.</p>

The Code:

<p>It is <strong>very important</strong> to practice every day.</p>
<p>I <em>really</em> love learning PHP at Coding Learners.</p>

Let’s use your boilerplate from Lesson 2 and fill the <body> section with an actual article. Copy and paste this into your file:

<body>
    <h1>My Coding Journey</h1>
    
    <h2>Why I started</h2>
    <p>I want to build <strong>CodingLearners.com</strong> to help people around the world learn technical skills.</p>
    
    <h2>My Goals</h2>
    <p>By the end of this month, I will master:</p>
    <p><em>HTML, CSS, and basic PHP.</em></p>
</body>

You may also like...

1 Response

Leave a Reply

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