HTML (HyperText Markup Language) is the standard language used to create webpages. In this course, you will learn HTML from scratch — starting from the basics to building real projects!
HTML stands for HyperText Markup Language. It is not a programming language, but a markup language that structures content for the web.
With HTML, you can define:
You only need 2 things to start writing HTML:
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is my first HTML page.</p>
</body>
</html>
This code creates a basic webpage that shows a heading and a paragraph.