Courses/Web Dev

Web Development Fundamentals

Learn HTML, CSS, and JavaScript from scratch. Build your first websites and understand how the web works.

Beginner
4 hours
5 Lessons
0/5 Completed
Course Progress0%

Lesson 1

Introduction to HTML

Learn the building blocks of web pages

45 min

What is HTML?

HTML (HyperText Markup Language) is the standard markup language for creating web pages. It describes the structure of a web page using a series of elements.

Basic HTML Structure

Every HTML document follows a basic structure:

<!DOCTYPE html>
<html>
  <head>
    <title>Page Title</title>
  </head>
  <body>
    <h1>Hello World!</h1>
  </body>
</html>

Common HTML Elements

  • <h1> to <h6> - Headings
  • <p> - Paragraphs
  • <a> - Links
  • <img> - Images
  • <div> - Division containers