Module 1: Structure

History of HTML

📚 Learning Objectives

  • Understand what HTML stands for
  • Identify the creator: Tim Berners-Lee
  • Learn the difference between HTML and other web technologies

HTML stands for HyperText Markup Language. It was created by Tim Berners-Lee in 1991 while working at CERN. It is the standard markup language for documents designed to be displayed in a web browser.

HTML provides the basic structure of sites, which is then enhanced and modified by other technologies like CSS and JavaScript. Think of HTML as the skeleton of a human body, while CSS is the skin and clothing, and JavaScript is the brain and behavior.

✨ Key Features of HTML5

  • Semantic Markup
  • Multimedia Support (Video/Audio)
  • Form Validation
  • Accessibility & SEO

🎥 Video Explanation

Video: Coming Soon

🧠 Practical Implementation

Observe the basic structure of an HTML element below.

index.html
<!DOCTYPE html>
<html>
<body>
    <h1>Welcome to Intelle Learn</h1>
    <p>Learning HTML is the first step to becoming a web developer.</p>
</body>
</html>

🚀 Topic Challenge

Create a basic HTML structure and use an <h2> tag to display your favorite hobby.