HTML for Kids: A Beginner’s Course | HTML and CSS

Headings and Paragraphs:

 

✅ Description:

Learn how to use headings and paragraphs to organize text.

📘 Explanation:

  • Use <h1> to <h6> for headings (from biggest to smallest).

  • Use <p> for paragraphs.

💻 Code Example:

 
<h1>Main Title</h1>
<h2>Subtitle</h2>
<p>This is a paragraph with some content.</p>
 

🛠️ Exercise:

  • Write a short article with one main title, two subtitles, and three paragraphs.